Files
personal-website/components/Button/types.ts
T
2021-12-17 16:59:45 +01:00

8 lines
150 B
TypeScript

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