next.js/examples/with-compiled-css/components/styled-button.js
styled-button.js12 lines283 B
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};
`;
Quest for Codev2.0.0
/
SIGN IN