import { JSX } from "solid-js"; export type Stylable = { class?: string; style?: JSX.CSSProperties; }; export type Clickable = { onClick?: | JSX.EventHandlerUnion< HTMLDivElement, MouseEvent, JSX.EventHandler > | undefined; }; export type Sizable = { width?: string; height?: string; };