Add pill component

This commit is contained in:
2026-02-26 23:10:08 -05:00
parent 378dae159f
commit 6c67604efc
28 changed files with 1240 additions and 9 deletions

View File

@@ -0,0 +1,20 @@
import type { PillProps } from "$/types/PillTypes";
import clsx from "clsx";
import Pill from "./Pill";
export default function LightPill({
className,
...props
}: Readonly<PillProps>){
return (
<Pill
data-testid="mattrixwv-light-pill"
className={clsx(
className,
"bg-light text-black"
)}
{...props}
/>
);
}