import React from "react"; import { styled, theme } from "../theme"; import { Divider } from "../divider"; import { Select as SelectPrimitive } from "radix-ui"; import type * as WPDS from "../theme"; const StyledSelectGroup = styled(SelectPrimitive.Group, {}); const StyledGroupLabel = styled(SelectPrimitive.Label, { margin: `${theme.space["050"]} ${theme.space[100]}`, fontSize: theme.fontSizes["087"], color: theme.colors.accessible, }); const DividerContainer = styled("div", { width: "100%", padding: `0px ${theme.space[100]}`, "&:last-child": { display: "none", }, variants: { none: { true: { display: "none", }, }, }, }); export type SelectGroupProps = { /** Used to insert select elements into the root component*/ children?: React.ReactNode; /** Overrides for the input text styles. Padding overrides affect the input container and */ css?: WPDS.CSS; /** The value of the select when initially rendered. Use when you do not need to control the state of the select. */ label?: string; } & React.ComponentPropsWithRef; export const SelectGroup = React.forwardRef( ({ children, label, ...props }: SelectGroupProps, ref) => ( <> {label} {children} ) ); SelectGroup.displayName = "SelectGroup";