mirror of
https://github.com/StanGirard/quivr.git
synced 2024-12-14 21:21:56 +03:00
1593c3342c
* feat: update GET/brains return status * feat: add public tag on brain list * feat: add public tag for public brain on brain settings tab * feat: hide over tab when brain access is public
23 lines
425 B
TypeScript
23 lines
425 B
TypeScript
import { HTMLProps } from "react";
|
|
|
|
import { cn } from "@/lib/utils";
|
|
|
|
export const Chip = ({
|
|
label,
|
|
children,
|
|
className,
|
|
...restProps
|
|
}: HTMLProps<HTMLSpanElement>): JSX.Element => {
|
|
return (
|
|
<span
|
|
className={cn(
|
|
"px-2 bg-gray-400 text-black rounded-xl text-sm flex items-center justify-center",
|
|
className
|
|
)}
|
|
{...restProps}
|
|
>
|
|
{label ?? children}
|
|
</span>
|
|
);
|
|
};
|