'use client'; import { forwardRef } from 'react'; import { Icon } from '../components'; import { ButtonProps } from './button.types'; import { ButtonLayout } from '../button-layout/button-layout'; /** * Button component ** description */ export const Button = forwardRef( ( { centralRipple = false, variant, disabled = false, icon, ...props }, ref, ) => ( {icon ? {icon} : <>} {props.children} ), );