Skip to content

FormSelect

Form select component with theme-aware styling using Radix UI Select primitives

Uses CSS custom properties from @sparkle/theme for consistent theming across light/dark modes and supports validation states with semantic colors.

import { FormSelect } from '@sparkle/ui'
PropTypeRequiredDefaultDescription
size"sm" | "md" | "lg" | undefinedSize variant for the select
validationState"default" | "success" | "error" | undefinedValidation state for styling
placeholderstring | undefinedPlaceholder text when no value is selected
disabledboolean | undefinedWhether the select is disabled
requiredboolean | undefinedWhether the select is required
valuestring | undefinedSelect value
onValueChange((value: string) => void) | undefinedSelect change handler
childrenReact.ReactNodeSelect children (SelectItem components)

This component uses CSS custom properties from @sparkle/theme for consistent styling across light and dark modes.

  • --theme-*: Uses theme design tokens for consistent styling

You can customize the appearance by:

  1. Theme Variables: Modify theme tokens in your @sparkle/theme configuration
  2. CSS Classes: Apply custom CSS classes via the className prop
  3. CSS-in-JS: Use styled-components or emotion with the component

This component follows accessibility best practices with proper ARIA attributes and keyboard support.