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

export const ROW_SHORTCUT_PROPS: RowShortcutProps = {
    ...FLEX_SHORTCUT_PROPS,
    row: { key: 'flexDirection', propIsValue: true },
    rowReverse: { key: 'flexDirection', propIsValue: true },
    column: { key: 'flexDirection', propIsValue: true },
    columnReverse: { key: 'flexDirection', propIsValue: true },
}
