Your IP : 216.73.216.1


Current Path : /proc/self/cwd/wp-content/plugins/leadin/scripts/elementor/Common/
Upload File :
Current File : //proc/self/cwd/wp-content/plugins/leadin/scripts/elementor/Common/ElementorButton.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>
  );
}