Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 | 13x 13x 4x 13x | import styled, { css } from 'styled-components'; import { string } from 'prop-types'; import { rem } from '../Typography'; import { getBtnTypeStyle, getBtnSizingStyle, getBtnCommonStyle, } from './buttonSelectors'; const propTypes = { btntype: string.isRequired, sizing: string.isRequired, }; const StyledButton = styled.button` border: none; overflow: visible; position: relative; display: inline-block; vertical-align: middle; text-decoration: none; transition: 0.1s ease-in-out; transition-property: color, background-color, border-color; cursor: pointer; outline: none; border-width: 1px; border-style: solid; border-color: transparent; background-color: transparent; border-radius: ${rem(6)}; &:disabled { opacity: 0.6; cursor: default; } ${({ theme, btntype, sizing }) => css` ${getBtnCommonStyle(theme)} ${getBtnSizingStyle(theme, sizing)} ${getBtnTypeStyle(theme, btntype, 'normal')} &:hover, &:focus { ${getBtnTypeStyle(theme, btntype, 'hover')} } &:active { ${getBtnTypeStyle(theme, btntype, 'active')} } &:disabled { ${getBtnTypeStyle(theme, btntype, 'normal')} } `} `; StyledButton.propTypes = propTypes; export default StyledButton; |