diff --git a/src/components/button.tsx b/src/components/button.tsx new file mode 100644 index 0000000..ecb8f83 --- /dev/null +++ b/src/components/button.tsx @@ -0,0 +1,41 @@ +/* @refresh reload */ +import { type Component, createSignal } from "solid-js"; +import type { TitleProps } from "../types/interfaces"; + +interface SwitchProps extends TitleProps { + defaultValue?: boolean, + onChange?: (value: boolean) => void, +} + +export const MySwitch: Component = ( + { + defaultValue = false, + title, + onChange, + className, + name, + id + }) => { + + const [checked, setChecked] = createSignal(defaultValue); + + function handleChange() { + const newChecked = !checked(); + setChecked(newChecked); + if (onChange) { + onChange(newChecked); + } + } + + return ( + + ); +};