@b1dr/xip-ui
Version:
A UI library for SolidJS with Themescura
12 lines (11 loc) • 422 B
TypeScript
import { JSX } from 'solid-js/jsx-runtime';
export declare const Input: (props: JSX.InputHTMLAttributes<HTMLInputElement> & {
class?: string;
rounded?: boolean;
}) => JSX.Element;
export declare const Label: (props: JSX.HTMLAttributes<HTMLLabelElement> & {
class?: string;
}) => JSX.Element;
export declare const LabelText: (props: JSX.HTMLAttributes<HTMLDivElement> & {
class?: string;
}) => JSX.Element;