import React from 'react'; import type { RowProps } from 'src/theme/themeTypes'; import type themeType from '../theme/theme'; import createRow from './createRow'; function createColumn(useTheme: () => T) { const Row = createRow(useTheme); const Column = ({ flexDirection = 'column', ...otherProps }: RowProps) => { return ; }; return Column; } export default createColumn;