UNPKG

react95

Version:

Refreshed Windows95 UI components for modern web apps - React95

16 lines 692 B
import React from 'react'; import { CommonStyledProps } from '../types'; declare type GroupBoxProps = { label?: React.ReactNode; children?: React.ReactNode; disabled?: boolean; variant?: 'default' | 'flat'; } & React.FieldsetHTMLAttributes<HTMLFieldSetElement> & CommonStyledProps; declare const GroupBox: React.ForwardRefExoticComponent<{ label?: React.ReactNode; children?: React.ReactNode; disabled?: boolean | undefined; variant?: "default" | "flat" | undefined; } & React.FieldsetHTMLAttributes<HTMLFieldSetElement> & CommonStyledProps & React.RefAttributes<HTMLFieldSetElement>>; export { GroupBox, GroupBoxProps }; //# sourceMappingURL=GroupBox.d.ts.map