mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-07-07 14:08:47 +00:00
* feat: add phosphor icons to base ui * feat_ add phosphor to blocks * feat: add phosphor to radix blocks * feat: add phosphor to radix ui * feat: add phosphor to radix example * feat: add missing phosphor icons * fix: rename broken icons * chore: format files * fix: add missing phosphor icons * chore: build registry --------- Co-authored-by: shadcn <m@shadcn.com>
61 lines
1.5 KiB
TypeScript
61 lines
1.5 KiB
TypeScript
import * as React from "react"
|
|
|
|
import { cn } from "@/registry/bases/base/lib/utils"
|
|
import { IconPlaceholder } from "@/app/(create)/components/icon-placeholder"
|
|
|
|
type NativeSelectProps = Omit<React.ComponentProps<"select">, "size"> & {
|
|
size?: "sm" | "default"
|
|
}
|
|
|
|
function NativeSelect({
|
|
className,
|
|
size = "default",
|
|
...props
|
|
}: NativeSelectProps) {
|
|
return (
|
|
<div
|
|
className={cn(
|
|
"cn-native-select-wrapper group/native-select relative w-fit has-[select:disabled]:opacity-50",
|
|
className
|
|
)}
|
|
data-slot="native-select-wrapper"
|
|
data-size={size}
|
|
>
|
|
<select
|
|
data-slot="native-select"
|
|
data-size={size}
|
|
className="cn-native-select outline-none disabled:pointer-events-none disabled:cursor-not-allowed"
|
|
{...props}
|
|
/>
|
|
<IconPlaceholder
|
|
lucide="ChevronDownIcon"
|
|
tabler="IconSelector"
|
|
hugeicons="UnfoldMoreIcon"
|
|
phosphor="CaretDownIcon"
|
|
className="cn-native-select-icon pointer-events-none absolute select-none"
|
|
aria-hidden="true"
|
|
data-slot="native-select-icon"
|
|
/>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
function NativeSelectOption({ ...props }: React.ComponentProps<"option">) {
|
|
return <option data-slot="native-select-option" {...props} />
|
|
}
|
|
|
|
function NativeSelectOptGroup({
|
|
className,
|
|
...props
|
|
}: React.ComponentProps<"optgroup">) {
|
|
return (
|
|
<optgroup
|
|
data-slot="native-select-optgroup"
|
|
className={cn(className)}
|
|
{...props}
|
|
/>
|
|
)
|
|
}
|
|
|
|
export { NativeSelect, NativeSelectOptGroup, NativeSelectOption }
|