12 lines
346 B
TypeScript
12 lines
346 B
TypeScript
interface IconProps {
|
|
className?: string;
|
|
}
|
|
|
|
export function InfoIcon({ className = 'w-3.5 h-3.5' }: IconProps) {
|
|
return (
|
|
<svg className={className} viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth={2}>
|
|
<circle cx="12" cy="12" r="10" />
|
|
<path strokeLinecap="round" d="M12 16v-4m0-4h.01" />
|
|
</svg>
|
|
);
|
|
}
|