# leadin/11.0.52/scripts/elementor/Common/ElementorButton.tsx

HubSpot All-In-One Marketing – Forms, Popups, Live Chat, version 11.0.52. 26 lines.

- Page: https://pluginprobe.com/plugins/leadin/11.0.52/code/scripts/elementor/Common/ElementorButton.tsx
- Raw: https://pluginprobe.com/plugins/leadin/11.0.52/raw/scripts/elementor/Common/ElementorButton.tsx
- Modified: 2024-04-11T14:35:44+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/leadin/11.0.52/code/scripts/elementor/Common/ElementorButton.tsx#L10-L20`.

```tsx
import { styled } from '@linaria/react';
import React from 'react';

const Container = styled.div`
  display: flex;
  justify-content: center;
  padding-bottom: 8px;
`;

export default function ElementorButton({
  children,
  ...params
}: React.PropsWithChildren<React.ButtonHTMLAttributes<HTMLButtonElement>>) {
  return (
    <Container className="elementor-button-wrapper">
      <button
        className="elementor-button elementor-button-default"
        type="button"
        {...params}
      >
        {children}
      </button>
    </Container>
  );
}

```
