mirror of
https://codeberg.org/vyn/mirai.git
synced 2025-07-02 01:13:19 +00:00
9 lines
221 B
Text
9 lines
221 B
Text
import { Palette } from "./Palette.slint";
|
|
|
|
export component BurgerIcon inherits Path {
|
|
width: 32px;
|
|
height: 32px;
|
|
commands: "M3 6h18M3 12h18M3 18h18";
|
|
stroke: Palette.foreground;
|
|
stroke-width: 2px;
|
|
}
|