MCPcopy Create free account
hub / github.com/untitleduico/react / NativeSelectProps

Interface NativeSelectProps

components/base/select/select-native.tsx:9–15  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

7import { cx } from "@/utils/cx";
8
9interface NativeSelectProps extends Omit<SelectHTMLAttributes<HTMLSelectElement>, "size"> {
10 label?: string;
11 hint?: string;
12 selectClassName?: string;
13 size?: "sm" | "md" | "lg";
14 options: { label: string; value: string; disabled?: boolean }[];
15}
16
17const styles = {
18 sm: {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected