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