import styled from 'styled-components'; import { UIStyledComponentProps } from '../../components/types'; import { getCssResponsive } from '../../components/utils'; type Props = { }; export type FlexRowProps = UIStyledComponentProps; export const FlexRow = styled.div` display: flex; align-items: center; // width: 100%; gap: 0.5rem; ${props => getCssResponsive(props)} `;