oadp-material
Version:
oadp-material
11 lines (10 loc) • 322 B
TypeScript
import * as React from 'react';
import './index.scss';
export interface OadpAttributeBooleanProps {
defaultChecked?: boolean;
size?: 'small' | 'medium';
autoWidth?: boolean;
disabled?: boolean;
}
declare const OadpAttributeBoolean: React.FC<OadpAttributeBooleanProps>;
export default OadpAttributeBoolean;