PluginProbe
HubSpot All-In-One Marketing – Forms, Popups, Live Chat / 11.0.52
HubSpot All-In-One Marketing – Forms, Popups, Live Chat v11.0.52
11.3.75 11.3.73 11.3.71 11.3.70 11.3.69 11.3.64 11.3.65 11.3.62 11.3.61 11.3.56 11.3.58 11.0.31 11.0.52 11.0.54 11.0.56 11.0.58 11.0.7 11.1.10 11.1.11 11.1.13 11.1.14 11.1.15 11.1.2 11.1.20 11.1.21 All 73 releases
leadin / scripts / elementor / Common / ElementorButton.tsx

ElementorButton.tsx in HubSpot All-In-One Marketing – Forms, Popups, Live Chat 11.0.52, at scripts/elementor/Common/ElementorButton.tsx

26 lines 562 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 import { styled } from '@linaria/react';
2 import React from 'react';
3
4 const Container = styled.div`
5 display: flex;
6 justify-content: center;
7 padding-bottom: 8px;
8 `;
9
10 export default function ElementorButton({
11 children,
12 ...params
13 }: React.PropsWithChildren<React.ButtonHTMLAttributes<HTMLButtonElement>>) {
14 return (
15 <Container className="elementor-button-wrapper">
16 <button
17 className="elementor-button elementor-button-default"
18 type="button"
19 {...params}
20 >
21 {children}
22 </button>
23 </Container>
24 );
25 }
26