Styled components props css

Styled Components¶

Обратите внимание на атрибут «as» компонента «Button». Он позволяет изменять HTML-тег, сохраняя стилизацию.

 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 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134
import styled,  createGlobalStyle, keyframes, > from 'styled-components'; const GlobalStyle = createGlobalStyle` *, *::before, *::after  margin: 0; padding: 0; box-sizing: border-box; > body  min-height: 100vh; background: radial-gradient(yellow, orange); display: grid; place-content: center; text-align: center; > `; const Button = styled.button` margin: 0.5em; padding: 0.5em 0; width: 132px; background: $(props) => props.primary ? '#337ab7' : '#f0f0f0f'>; outline: none; border: none; border-radius: 4px; box-shadow: 0 1px 1px rgba(0, 0, 0, 0.25); font-family: Audiowide; font-size: 1em; letter-spacing: 2px; text-transform: uppercase; color: $(props) => props.primary ? '#f0f0f0' : '#1c1c1c'>; cursor: pointer; user-select: none; transition: 0.2s; &:hover  transform: scale(1.05); > &:active  box-shadow: none; > `; const SuccessButton = styled(Button)` background: #5cb85c; color: #f0f0f0; `; const ReversedButton = (props) => ( Button  props> children=props.children.split('').reverse()> /> ); const Input = styled.input.attrs((props) => ( type: 'text', placeholder: 'Some text. ', size: props.size || '1em', >))` border: none; border-radius: 4px; box-shadow: 0 0 2px inset rgba(0, 0, 0, 0.5); font-family: Audiowide; font-size: $(props) => props.size>; text-align: center; color: rgba(0, 0, 0, 0.5); margin: 0.5rem; padding: 0.5rem 0; `; const PasswordInput = styled(Input).attrs( type: 'password', placeholder: 'Secret key. ', >)``; const fade = keyframes` from  opacity: 1; > to  opacity: 0; > `; const FadeButton = styled(Button)` animation: $fade> 2s linear infinite alternate; `; export default function App()  return ( <> GlobalStyle /> Button>base/Button> br /> Button primary>primary/Button> br /> SuccessButton>success/SuccessButton> br /> Button primary as="a" href="#" style= <textDecoration: 'none', display: 'inline-block', textAlign: 'center', >> > link /Button> br /> Button as=ReversedButton>>reversed/Button> br /> Input /> br /> Input size="1.25em" /> br /> PasswordInput /> br /> FadeButton primary>fade/FadeButton> /> ); > 

Комментарии

Источник

Читайте также:  Css width for div
Оцените статью