GithubX

Native Select

A styled native select element.

## installation

pnpm dlx shadcn@latest add https://ascii.cnlibs.com/r/native-select.json

## usage

import { NativeSelect } from "@/components/ui/native-select";
<NativeSelect defaultValue="production" chWidth={28} aria-label="Environment">
  <option value="production">Production</option>
  <option value="staging">Staging</option>
  <option value="development">Development</option>
</NativeSelect>

## with label

## wide

chWidth sizes the frame in characters.

## disabled