@bee-design/ui
Version:
Bee Design React UI Library.
8 lines (7 loc) • 396 B
TypeScript
import { PropsWithChildren } from 'react';
import { TypographyParagraphProps, TypographyTitleProps, TypographyTextProps } from './interface';
declare type BaseProps = PropsWithChildren<TypographyParagraphProps & TypographyTitleProps & TypographyTextProps> & {
componentType: 'Title' | 'Paragraph' | 'Text';
};
declare function Base(props: BaseProps): JSX.Element;
export default Base;