import { type PropsWithChildren } from "react"; import type { BaseProps, HTMLProps } from "../../shared/types"; import { cn } from "../../shared/utils/cn"; import { Typography } from "../typography/Typography"; import { chipStyles, type ChipColor, type ChipVariant } from "./utils"; export type ChipProps = Omit, "label"> & { color?: ChipColor; variant?: ChipVariant; } & BaseProps; export const Chip = ({ className, color = "gray", variant = "pill", children, testId, ...props }: PropsWithChildren) => { return (
{children}
); };