9 lines
155 B
JavaScript
Raw Normal View History

import styled from 'styled-components';
import { Row as Base } from 'reactstrap';
const Row = styled(Base)`
margin-bottom: 4px;
`;
export default Row;