NativeSelect
NativeSelect
は、ユーザーがオプションのリストから1つを選択するために使用されるコンポーネントです。ブラウザ(ユーザーエージェント)によって提供されるネイティブなドロップダウンリストを表示します。
テーマ
NativeSelect
は、複数パーツのコンポーネントです。
NativeSelect
は、Inputのスタイルを継承しています。
コンポーネントのスタイルを変更したい場合は、こちらをご覧ください。
export const NativeSelect: ComponentMultiStyle<"NativeSelect"> =mergeMultiStyle(Input, {baseStyle: {container: {},field: {"& > option, optgroup": {bg: ["white", "black"],},cursor: "pointer",pb: "px",pr: "8",_focus: {zIndex: "unset",},_readOnly: {pointerEvents: "none",},},icon: {color: ["blackAlpha.600", "whiteAlpha.700"],outline: 0,py: "2",rounded: "md",w: "6",_disabled: {opacity: 0.4,},},},sizes: {xs: {icon: {fontSize: "lg",insetEnd: "1",pt: "2",},},sm: {icon: {fontSize: "xl",insetEnd: "1.5",},},md: {icon: {fontSize: "xl",insetEnd: "2",},},lg: {icon: {fontSize: "2xl",insetEnd: "2",},},xl: {icon: {fontSize: "3xl",insetEnd: "3",},},},})({ omit: ["addon", "element"] })
GitHubでこのページを編集する