-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathButton.jsx
44 lines (37 loc) · 896 Bytes
/
Button.jsx
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
import styled, { css } from "styled-components";
const StyledButton = styled.button.withConfig({
shouldForwardProp: (prop) => "position" !== prop,
})`
border: none;
padding: 0.5rem 1rem;
border-radius: 5px;
text-transform: capitalize;
${(props) =>
props.position === "left" &&
css`
color: var(--cool-gray);
background-color: transparent;
&:active {
color: var(--marine-blue);
}
`}
${(props) =>
props.position === "right" &&
css`
margin-left: auto;
display: inline-block;
background-color: var(--marine-blue);
color: var(--white);
&:active {
background-color: var(--purplish-blue);
}
`}
`;
function Button({ position, onClick, children }) {
return (
<StyledButton onClick={onClick} position={position}>
{children}
</StyledButton>
);
}
export default Button;