@vimeo/iris
Version:
Vimeo Design System
12 lines (11 loc) • 317 B
TypeScript
import { FunctionComponent } from 'react';
import { IrisProps } from '../../../utils';
type OptionProps = any;
export interface Minors {
Option: FunctionComponent<IrisProps<OptionProps>>;
}
export declare function Option({ faux, ...props }: {
[x: string]: any;
faux?: boolean;
}): JSX.Element;
export {};