21 lines
337 B
TypeScript
21 lines
337 B
TypeScript
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}
|
|
/>
|
|
);
|
|
}
|