mirror of
https://codeberg.org/vyn/mirai.git
synced 2025-07-03 18:23:19 +00:00
10 lines
221 B
Text
10 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;
|
||
|
}
|