feat: add ui kit page

This commit is contained in:
2026-08-27 21:35:01 +05:00
parent 8437c95a28
commit 06d185add6
6 changed files with 332 additions and 6 deletions
@@ -4,6 +4,7 @@
type?: string;
placeholder?: string;
readonly?: boolean;
label?: string;
oninput?: (value: string) => void;
}
let {
@@ -11,6 +12,7 @@
type = "text",
placeholder = "",
readonly = false,
label,
oninput,
}: Props = $props();
@@ -26,6 +28,7 @@
{placeholder}
{readonly}
{value}
aria-label={label}
oninput={handle}
/>