// Row.tsx import styled from 'styled-components' export interface RowProps { alignItems?: string justifyContent?: string } export const Row = styled.div` display: flex; flex-direction: row; align-items: ${({ alignItems }) => alignItems ?? 'flex-start'}; justify-content: ${({ justifyContent }) => justifyContent ?? 'flex-start'}; `