import React, { forwardRef } from 'react'; import classNames from 'classnames'; import { ButtonProps, Options } from '@/components/elements/button/types'; import styles from './style.module.css'; const Button = forwardRef( ({ children, shape, size, variant, className, ...rest }, ref) => { return ( ); }, ); const TextButton = forwardRef(({ className, ...props }, ref) => ( // @ts-expect-error