Files
personal-website/components/Button/types.ts
T
2022-01-08 19:06:43 +01:00

7 lines
133 B
TypeScript

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