@lapidist/components
Version:
Lapidist components
13 lines (12 loc) • 459 B
TypeScript
import { BaseProps, SizeType } from '../types';
import { TextFamilyType, TextWeightType } from '../Text';
export interface HeadingProps {
readonly size?: SizeType;
readonly weight?: TextWeightType;
readonly family?: TextFamilyType;
}
declare const Heading: {
({ className, as, testId, size, weight, family, ...restProps }: BaseProps & HeadingProps): import("react/jsx-runtime").JSX.Element;
displayName: string;
};
export default Heading;