| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- import React, { FC } from 'react';
- import styled, { css } from 'styled-components';
- interface Props {
- withText?: boolean;
- }
- const Button = styled.button<Props>`
- display: flex;
- justify-content: center;
- align-items: center;
- width: 26px;
- height: 26px;
- margin: 0 12px 0 2px;
- padding: 0;
- border: none;
- outline: none;
- border-radius: 100%;
- box-shadow: 0 2px 4px rgba(100, 100, 100, 0.1);
- background-color: #dedede;
- cursor: pointer;
- transition: all 0.2s ease-out;
- @media only screen and (max-width: 768px) {
- height: 22px;
- width: 22px;
- margin: 0 8px 0 2px;
- img {
- width: 10px;
- height: 10px;
- }
- }
- ${({ withText }) =>
- withText &&
- css`
- width: auto;
- padding: 0 12px;
- border-radius: 100px;
- img {
- margin: 4px 6px 0 0;
- }
- @media only screen and (max-width: 768px) {
- width: auto;
- }
- `};
- :active,
- :focus {
- outline: none;
- }
- :hover {
- transform: translateY(-2px);
- }
- `;
- Button.defaultProps = {
- withText: null,
- };
- export default Button;
|