Add Dialog component

This commit is contained in:
Gregory Schier
2023-03-02 18:46:10 -08:00
parent 26cc64d3a0
commit 1a9547d1d2
10 changed files with 174 additions and 73 deletions

View File

@@ -1,6 +1,8 @@
import { forwardRef } from 'react';
import { Icon, IconProps } from './Icon';
import { Button, ButtonProps } from './Button';
import type { IconProps } from './Icon';
import { Icon } from './Icon';
import type { ButtonProps } from './Button';
import { Button } from './Button';
import classnames from 'classnames';
type Props = Omit<IconProps, 'size'> & ButtonProps<typeof Button>;