import React from 'react' import { StyledRow, StyledInputRow } from './StyledUI' type RowProps = React.ComponentProps & { input?: boolean } export function Row({ input, ...props }: RowProps) { if (input) return return }