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

9 lines
188 B
TypeScript

export type Props = {
variant?: 'outline' | 'text';
href: string;
target?: HTMLAnchorElement['target'];
onClick?: () => void;
children: React.ReactNode;
className?: string;
};