mirror of
https://github.com/Nezumi-2711/react-training.git
synced 2026-09-22 20:01:59 +00:00
16 lines
295 B
TypeScript
16 lines
295 B
TypeScript
import styled from 'styled-components';
|
|
|
|
const Button = styled.button`
|
|
padding: 10px 20px;
|
|
|
|
background-color: var(--primary-color);
|
|
color: var(--light-text);
|
|
text-transform: uppercase;
|
|
font-weight: 500;
|
|
cursor: pointer;
|
|
|
|
border-radius: var(--radius-md);
|
|
`;
|
|
|
|
export default Button;
|