interface IconProps {
className?: string;
}
const base = { fill: 'none', viewBox: '0 0 24 24', stroke: 'currentColor' } as const;
const path = { strokeLinecap: 'round', strokeLinejoin: 'round', strokeWidth: 2 } as const;
export function IconEdit({ className = 'h-3.5 w-3.5' }: IconProps) {
return (
);
}
export function IconTrash({ className = 'h-3.5 w-3.5' }: IconProps) {
return (
);
}
export function IconDuplicate({ className = 'h-3.5 w-3.5' }: IconProps) {
return (
);
}
export function IconPlus({ className = 'h-5 w-5' }: IconProps) {
return (
);
}
export function IconCheck({ className = 'h-4 w-4' }: IconProps) {
return (
);
}
export function IconClose({ className = 'h-5 w-5' }: IconProps) {
return (
);
}