import { GetColorPalette } from '@/utils/styles/palette'; import { PolymorphicComponentProp, FilterElements } from '@/utils/types/properties'; export type BoxColorPalette = GetColorPalette<'white' | 'secondary' | 'tertiary'>; export type BoxElements = FilterElements<'div' | 'section' | 'aside' | 'header' | 'nav' | 'footer' | 'article'>; export type BoxProps = PolymorphicComponentProp;