Files
personal-website/components/IconButton/types.ts
T
2023-07-01 00:38:49 +01:00

11 lines
198 B
TypeScript

export interface Props {
alt: string;
icon: string;
width?: number;
height?: number;
href?: string;
target?: HTMLAnchorElement['target'];
onClick?: () => void;
className?: string;
}