import React from 'react'; import styled from 'styled-components'; import {Link} from 'react-router-dom'; interface IconButtonProps { children?: React.ReactNode; disabled?: boolean; onClick?: () => void; to?: string; } const IconButton: React.FC = ({children, disabled, onClick, to}) => { return ( {!!to ? {children} : children} ); }; interface StyledButtonProps { disabled?: boolean; } /* box-shadow: 6px 6px 12px ${props => props.theme.color.grey[600]}, -12px -12px 24px ${props => props.theme.color.grey[800]}aa; */ // background-color: ${(props) => (!props.disabled ? '#571eb1' : props.theme.color.grey[900])}; // color: ${(props) => (!props.disabled ? props.theme.color.primary.main : props.theme.color.grey[500])}; const StyledButton = styled.button` align-items: center; border: 0px solid #f9d749; border-radius: 28px; background-color: #854f97d4; box-shadow: ${(props) => ('0px 0px 5px 0px ' + !props.disabled ? 'rgba(251,221,76,1)' : 'grey' + ';')}; color: ${(props) => (!props.disabled ? '#fff' : 'grey')}; cursor: pointer; display: flex; font-weight: 700; height: 56px; justify-content: center; letter-spacing: 1px; outline: none; padding: 0; margin: 0; pointer-events: ${(props) => (!props.disabled ? undefined : 'none')}; text-transform: uppercase; width: 56px; &:hover { background-color: #D19AFF; color: #fff; } `; const StyledLink = styled(Link)` align-items: center; color: inherit; display: flex; flex: 1; height: 56px; justify-content: center; margin: 0 ${(props) => -props.theme.spacing[4]}px; padding: 0 ${(props) => props.theme.spacing[4]}px; text-decoration: none; `; export default IconButton;