14 lines
272 B
JavaScript
14 lines
272 B
JavaScript
|
import styled from 'styled-components';
|
||
|
import Button from '/imports/ui/components/common/button/component';
|
||
|
|
||
|
const LeaveButton = styled(Button)`
|
||
|
border-radius: 1.1rem;
|
||
|
font-size: 1rem;
|
||
|
line-height: 1.1rem;
|
||
|
font-weight: 400;
|
||
|
`;
|
||
|
|
||
|
export default {
|
||
|
LeaveButton,
|
||
|
};
|