Add content for user page

This commit is contained in:
2023-10-24 15:38:47 +07:00
parent ec2edcb4b8
commit d4d3d8d944
7 changed files with 235 additions and 15 deletions
@@ -0,0 +1,15 @@
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;