import styled from 'styled-components'; const Row = styled.div<{align?: string; padding?: string; border?: string; borderRadius?: string}>` width: 100%; display: flex; padding: 0; align-items: ${({align}) => (align ? align : 'center')}; padding: ${({padding}) => padding}; border: ${({border}) => border}; border-radius: ${({borderRadius}) => borderRadius}; `; export const RowBetween = styled(Row)` justify-content: space-between; `; export const RowFlat = styled.div` display: flex; align-items: flex-end; `; export const AutoRow = styled(Row)<{gap?: string; justify?: string}>` flex-wrap: wrap; margin: ${({gap}) => gap && `-${gap}`}; justify-content: ${({justify}) => justify && justify}; & > * { margin: ${({gap}) => gap} !important; } `; export const RowFixed = styled(Row)<{gap?: string; justify?: string}>` width: fit-content; margin: ${({gap}) => gap && `-${gap}`}; `; export default Row;