import { ColumnShortcutProps } from '../interfaces'
import { FLEX_SHORTCUT_PROPS } from './flex'

export const COLUMN_SHORTCUT_PROPS: ColumnShortcutProps = {
    ...FLEX_SHORTCUT_PROPS,
    column: { key: 'flexDirection', propIsValue: true },
    columnReverse: { key: 'flexDirection', propIsValue: true },
}
