import {
    FlexConfigKey,
    FlexShortcutProps,
} from '../interfaces'

export const FLEX_WIDTH_CONFIG: FlexConfigKey[] = [
    'flexDirection',
    'justifyContent',
    'alignItems',
]

export const FLEX_SHORTCUT_PROPS: FlexShortcutProps = {
    justify: { key: 'justifyContent', propIsValue: false },
    align: { key: 'alignItems', propIsValue: false },
}
