PR-AGENT / src /components /Icon.tsx
Seth
Your commit message
3c11192
raw
history blame contribute delete
221 Bytes
type Props = {
name: string;
className?: string;
};
export function Icon({ name, className }: Props) {
return (
<span className={`material-symbols-outlined ${className ?? ""}`}>
{name}
</span>
);
}