Files
Trilium/apps/client/src/widgets/react/Icon.tsx

8 lines
211 B
TypeScript
Raw Normal View History

interface IconProps {
icon?: string;
className?: string;
}
export default function Icon({ icon, className }: IconProps) {
return <span class={`${icon ?? "bx bx-empty"} ${className ?? ""}`}></span>
}