/* Copyright 2026 Marimo. All rights reserved. */ import type { VariantProps } from "class-variance-authority"; import clsx from "clsx"; import React from "react"; import * as styles from "./Inputs.styles"; type ButtonProps = React.ButtonHTMLAttributes & VariantProps; export const Button = React.forwardRef( ({ color, shape, size, className, ...props }, ref) => { return ( ); }, ); Button.displayName = "Button"; type InputProps = React.HtmlHTMLAttributes; export const Input = React.forwardRef( ({ className, ...props }, ref) => { return ( ); }, ); Input.displayName = "Input";