import { FCC } from 'onekijs-framework'; import React from 'react'; import styled from 'styled-components'; import { addClassname } from '../../utils/style'; import { rowStyle } from './style'; import { RowProps } from './typings'; const RowComponent: FCC = ({ alignItems, width, xs, sm, md, lg, xl, gap, gapX, gapY, margin, marginBottom, marginLeft, marginRight, marginTop, marginX, marginY, ...props }) => { return
; }; const Row = styled(RowComponent)` ${rowStyle} `; export default Row;