mirror of
https://github.com/zadam/trilium.git
synced 2025-10-29 02:28:57 +01:00
7 lines
152 B
TypeScript
7 lines
152 B
TypeScript
interface IconProps {
|
|
icon?: string;
|
|
}
|
|
|
|
export default function Icon({ icon }: IconProps) {
|
|
return <span class={icon ?? "bx bx-empty"}></span>
|
|
} |