mirror of
https://github.com/Theaninova/TheaninovOS.git
synced 2026-01-07 16:22:50 +00:00
7 lines
192 B
JavaScript
7 lines
192 B
JavaScript
import { Widget } from '../../imports.js';
|
|
|
|
export const MaterialIcon = (icon, size, props = {}) => Widget.Label({
|
|
className: `icon-material txt-${size}`,
|
|
label: icon,
|
|
...props,
|
|
}) |