import { baseIgnoreAttrs, gloss } from '../gloss' import { AlphaColorProps, alphaColorTheme, propsToStyles } from '../themes' import { GlossProps } from '../types' import { Box } from './Box' export type FlexPropsBase = AlphaColorProps export type FlexProps = GlossProps export const Flex = gloss(Box, { ignoreAttrs: baseIgnoreAttrs, }).theme( // css props propsToStyles, // for text opacity alphaColorTheme, )