mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2025-12-23 10:11:54 +00:00
12 lines
419 B
XML
12 lines
419 B
XML
<input:checkbox :checked="CHECKED: (Bool) = false" :disabled="DISABLED: (Bool) = false" :inverted="INVERTED: (Bool) = false">
|
|
<box width="14px" height="14px" :fill="{{BOX_COLOR}}" :round="2px">
|
|
<if :a="{{CHECKED}}">
|
|
<if :a="{{INVERTED}}" :b="false">
|
|
<icon :svg="`checkmark_white.svg`" />
|
|
</if>
|
|
<if :a="{{INVERTED}}">
|
|
<icon :svg="`checkmark_accent.svg`" />
|
|
</if>
|
|
</if>
|
|
</box>
|
|
</input:checkbox>
|