/
githubmirror
/
next.js
Обзор
Документация
Войти
/
githubmirror
/
next.js
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
canary
examples/with-compiled-css/components/styled-button.js
11 строк
283 B
Steven
chore(examples): use default prettier for examples/templates (#60530)
12 янв 2024, 02:01
Не верифицирован
12 янв 2024, 02:01
4466ba4
Код
Авторство
О чём код?
import { styled } from "@compiled/react"; export const Button = styled.button` color: ${(props) => props.color}; background-color: transparent; padding: 6px 8px; border-radius: 3px; width: 100%; font-family: sans-serif; border: 1px solid ${(props) => props.color}; `;