@plurid/plurid-ui-components-react
Version:
Plurid User Interface Components for React
15 lines (14 loc) • 365 B
TypeScript
import React from 'react';
import { Theme } from '@plurid/plurid-themes';
export interface SwitchProperties {
checked: boolean;
theme?: Theme;
level?: number;
round?: boolean;
exclusive?: boolean;
accent?: string;
Icon?: React.FC<any>;
atChange: () => void;
}
declare const Switch: React.FC<SwitchProperties>;
export default Switch;