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

9 lines
188 B
TypeScript

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