diff --git a/src/components/button.tsx b/src/components/button.tsx index 0102ba1..089a1ba 100644 --- a/src/components/button.tsx +++ b/src/components/button.tsx @@ -1,6 +1,6 @@ /* @refresh reload */ -import { type Component, createSignal, JSX } from "solid-js"; -import type { ButtonProps, ChildProps, TitleProps } from "../types/interfaces"; +import { type Component, createSignal } from "solid-js"; +import type { ButtonProps, TitleProps } from "../types/interfaces"; interface SwitchProps extends TitleProps { defaultValue?: boolean, @@ -15,7 +15,7 @@ export const MySwitch: Component = ( className, name, id - }): JSX.Element => { + }) => { const [checked, setChecked] = createSignal(defaultValue); @@ -49,7 +49,7 @@ export const Button: Component = ( onClick, type = "button", } -): JSX.Element => { +) => { return (