refactor: split storybook (#2706)

This commit is contained in:
himself65
2023-06-08 18:27:45 +08:00
parent f540863150
commit ead106b940
35 changed files with 317 additions and 175 deletions
@@ -4,6 +4,9 @@ import type { ButtonProps } from './interface';
import { Loading } from './loading';
import { StyledButton } from './styles';
import { getSize } from './utils';
export type { ButtonProps };
export const Button = forwardRef<HTMLButtonElement, ButtonProps>(
(
{
@@ -1,4 +1,5 @@
export * from './button';
export * from './dropdown';
export * from './icon-button';
export * from './radio';
export * from './text-button';