-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Expand file tree
/
Copy pathsolutions-buttons.js
More file actions
39 lines (35 loc) · 1.05 KB
/
solutions-buttons.js
File metadata and controls
39 lines (35 loc) · 1.05 KB
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
import React from "react";
import styled from "styled-components";
import Button from "../../reusecore/Button";
const BtnContainer = styled.div`
display: flex;
gap: 40px;
flex-direction: row;
justify-content: center;
Button {
font-size: 20px;
color: ${(props) => props.theme.blackToWhite} !important;
font-weight: 600;
transition: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@media (max-width: 418px) {
flex-direction: column;
justify-content: center;
align-items: center;
gap: 30px;
}
`;
const DemoBtn = ({ style }) => {
return (
<BtnContainer className="btn" style={style} >
<Button
aria-label="Book a demo"
$secondary
$external={true}
title="Book a demo"
$url="https://calendar.google.com/calendar/appointments/schedules/AcZssZ3pmcApaDP4xd8hvG5fy8ylxuFxD3akIRc5vpWJ60q-HemQi80SFFAVftbiIsq9pgiA2o8yvU56?gv=true"
/>
</BtnContainer>
);
};
export default DemoBtn;