class101-ui
Version:
A React-based UI Component Library, powered by Class101.
18 lines (17 loc) • 501 B
TypeScript
import React from 'react';
import { Typo } from '.';
interface Props {
lg?: Typo;
sm?: Typo;
paragraph?: boolean;
color?: string;
fontWeight?: number | string;
textAlign?: 'left' | 'right' | 'center' | 'justify';
marginTop?: number;
marginBottom?: number;
marginLeft?: number;
marginRight?: number;
children: React.ReactNode;
}
declare const _default: ({ paragraph, children, ...restProps }: Props) => JSX.Element;
export default _default;