Files
personal-website/components/Button/types.ts
T
2023-03-19 00:17:48 +01:00

9 lines
182 B
TypeScript

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