mirror of
https://github.com/strapi/strapi.git
synced 2025-10-20 12:31:29 +00:00
9 lines
155 B
JavaScript
9 lines
155 B
JavaScript
import styled from 'styled-components';
|
|
import { Row as Base } from 'reactstrap';
|
|
|
|
const Row = styled(Base)`
|
|
margin-bottom: 4px;
|
|
`;
|
|
|
|
export default Row;
|