UNPKG

@geist-ui/react

Version:

Modern and minimalist React UI library.

15 lines (14 loc) 547 B
import React, { ReactNode } from 'react'; interface Props { value?: string; label?: string; title?: string | ReactNode; subtitle?: string | ReactNode; className?: string; } declare type NativeAttrs = Omit<React.FieldsetHTMLAttributes<any>, keyof Props>; export declare type FieldsetProps = Props & NativeAttrs; declare const Fieldset: React.ForwardRefExoticComponent<Props & NativeAttrs & { children?: React.ReactNode; } & import("../use-scaleable").ScaleableProps & React.RefAttributes<unknown>>; export default Fieldset;