UNPKG

@geist-ui/react

Version:

Modern and minimalist React UI library.

9 lines (8 loc) 343 B
import React from 'react'; interface Props { className?: string; } declare type NativeAttrs = Omit<React.HTMLAttributes<HTMLDivElement>, keyof Props>; export declare type FieldsetSubtitleProps = Props & NativeAttrs; declare const FieldsetSubtitle: React.FC<React.PropsWithChildren<FieldsetSubtitleProps>>; export default FieldsetSubtitle;