@mui/x-date-pickers
Version:
The community edition of the Date and Time Picker components (MUI X).
13 lines (12 loc) • 326 B
TypeScript
import * as React from 'react';
interface OutlineProps extends React.HTMLAttributes<HTMLFieldSetElement> {
notched: boolean;
shrink: boolean;
label: React.ReactNode;
ownerState: any;
}
/**
* @ignore - internal component.
*/
export default function Outline(props: OutlineProps): React.JSX.Element;
export {};