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>) { return ( ); }