@geist-ui/react
Version:
Modern and minimalist React UI library.
9 lines (8 loc) • 331 B
TypeScript
import React from 'react';
interface Props {
className?: string;
}
declare type NativeAttrs = Omit<React.HTMLAttributes<HTMLDivElement>, keyof Props>;
export declare type FieldsetTitleProps = Props & NativeAttrs;
declare const FieldsetTitle: React.FC<React.PropsWithChildren<FieldsetTitleProps>>;
export default FieldsetTitle;