mirror of
https://github.com/Theaninova/TheaninovOS.git
synced 2025-12-17 22:16:25 +00:00
9 lines
194 B
JavaScript
9 lines
194 B
JavaScript
import {Widget} from "../../imports.js"
|
|
|
|
export const MaterialIcon = (icon, size, props = {}) =>
|
|
Widget.Label({
|
|
className: `icon-material txt-${size}`,
|
|
label: icon,
|
|
...props,
|
|
})
|