7 lines
184 B
JavaScript
7 lines
184 B
JavaScript
import { h } from 'preact';
|
|
|
|
export const Toggle = ({ ...otherProps }) => {
|
|
return <input type="checkbox" className="c-toggle" {...otherProps} />;
|
|
};
|
|
|
|
Toggle.displayName = 'Toggle';
|