@specialdoom/solid-rev-kit
Version:
RevKit UI implementation for SolidJS
11 lines (10 loc) • 419 B
TypeScript
import { HeadingProps } from './heading';
import { LabelProps } from './label';
import { ParagraphProps } from './paragraph';
declare const Typography: {
Heading: import("solid-js").Component<HeadingProps>;
Label: import("solid-js").Component<LabelProps>;
Paragraph: import("solid-js").Component<ParagraphProps>;
};
export { Typography };
export type { HeadingProps, ParagraphProps, LabelProps };