Files
MattrixwvReactComponents/lib/component/pill/TertiaryPill.tsx
2026-02-26 23:10:08 -05:00

21 lines
346 B
TypeScript

import type { PillProps } from "$/types/PillTypes";
import clsx from "clsx";
import Pill from "./Pill";
export default function TertiaryPill({
className,
...props
}: Readonly<PillProps>){
return (
<Pill
data-testid="mattrixwv-tertiary-pill"
className={clsx(
className,
"bg-tertiary text-white"
)}
{...props}
/>
);
}