wash-cli 0.19.1

wasmcloud Shell (wash) CLI tool
import {Slot} from '@radix-ui/react-slot';
import {type VariantProps} from 'class-variance-authority';
import * as React from 'react';
import {cn} from 'lib/utils';
import {buttonVariants} from './variants';

export interface ButtonProps
  extends React.ButtonHTMLAttributes<HTMLButtonElement>,
    VariantProps<typeof buttonVariants> {
  asChild?: boolean;
}

const Button = React.forwardRef<HTMLButtonElement, ButtonProps>(
  ({className, variant, size, asChild = false, ...props}, ref) => {
    const Comp = asChild ? Slot : 'button';
    return <Comp className={cn(buttonVariants({variant, size, className}))} ref={ref} {...props} />;
  },
);
Button.displayName = 'Button';

export default Button;