import type { ButtonProps } from "$/types/ButtonTypes"; import clsx from "clsx"; import * as React from "react"; const Button = React.forwardRef( ( { className, rounding = "lg", shape = "rectangle", size = "md", variant = "standard", disabled, ariaLabel, ariaDescribedBy, ariaControls, role, tabIndex, children, onClick, ...buttonProps }, ref ) => { return ( ); } ); export default Button;