22 lines
372 B
TypeScript
22 lines
372 B
TypeScript
import styled from 'styled-components'
|
|
|
|
export const BasicButtonView = styled.button`
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
width: 120px;
|
|
height: 45px;
|
|
cursor: pointer;
|
|
background: #254F7F;
|
|
border-radius: 8px;
|
|
border-style: none;
|
|
|
|
font-family: 'Poppins';
|
|
font-size: 16px;
|
|
/* identical to box height */
|
|
|
|
|
|
color: #FFFFFF;
|
|
`
|