You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
521 B
TypeScript
18 lines
521 B
TypeScript
import * as React from 'react';
|
|
import { InternalStandardProps as StandardProps } from '..';
|
|
|
|
export interface NotchedOutlineProps
|
|
extends StandardProps<React.FieldsetHTMLAttributes<HTMLFieldSetElement>> {
|
|
disabled?: boolean;
|
|
error?: boolean;
|
|
focused?: boolean;
|
|
label?: React.ReactNode;
|
|
notched: boolean;
|
|
}
|
|
|
|
export type NotchedOutlineClassKey = keyof NonNullable<NotchedOutlineProps['classes']>;
|
|
|
|
declare const NotchedOutline: React.JSXElementConstructor<NotchedOutlineProps>;
|
|
|
|
export default NotchedOutline;
|