40 lines
938 B
JavaScript
Raw Normal View History

import styled from 'styled-components';
import PropTypes from 'prop-types';
import { themePropTypes } from 'strapi-helper-plugin';
const Wrapper = styled.div`
display: flex;
justify-content: center;
align-items: center;
width: ${({ small }) => (small ? '24px' : '30px')};
height: ${({ small }) => (small ? '24px' : '30px')};
margin-left: 5px;
background-color: ${({ theme }) => theme.main.colors.white};
border: 1px solid ${({ theme }) => theme.main.colors.darkGrey};
border-radius: ${({ theme }) => theme.main.sizes.borderRadius};
cursor: pointer;
font-size: 11px;
color: ${({ color }) => color};
${({ type }) =>
type === 'link' &&
`
transform: rotate(90deg)
`};
`;
Wrapper.defaultProps = {
color: '#b3b5b9',
type: null,
small: false,
};
Wrapper.propTypes = {
color: PropTypes.string,
small: PropTypes.bool,
type: PropTypes.string,
...themePropTypes,
};
export default Wrapper;