UNPKG

nice-ui

Version:

React design system, components, and utilities

11 lines (10 loc) 304 B
import * as React from 'react'; export interface NotchedOutlineProps { className?: string; label: React.ReactNode; active?: boolean; disabled?: boolean; children?: React.ReactNode; style?: React.CSSProperties; } export declare const NotchedOutline: React.FC<NotchedOutlineProps>;