mirror of
https://github.com/end-4/dots-hyprland.git
synced 2026-06-08 00:09:27 -05:00
8 lines
215 B
JavaScript
8 lines
215 B
JavaScript
import Widget from 'resource:///com/github/Aylur/ags/widget.js';
|
|
|
|
export const MaterialIcon = (icon, size, props = {}) => Widget.Label({
|
|
className: `icon-material txt-${size}`,
|
|
label: icon,
|
|
...props,
|
|
})
|