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

9 lines
189 B
TypeScript

export type Props = {
variant?: 'outline' | 'text' | 'action';
type?: 'button' | 'submit';
link?: string;
target?: HTMLAnchorElement['target'];
dark?: boolean;
disabled?: boolean;
};