From a6afce7ca9a5fcb069b3d39ca356b1c6b6ac6a1f Mon Sep 17 00:00:00 2001 From: 0tuedon <90271995+0tuedon@users.noreply.github.com> Date: Thu, 13 Nov 2025 12:14:39 +0100 Subject: [PATCH] fix: removed unsued pill props --- src/components/pill/Pill.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/components/pill/Pill.tsx b/src/components/pill/Pill.tsx index b2b27da..17fabd9 100644 --- a/src/components/pill/Pill.tsx +++ b/src/components/pill/Pill.tsx @@ -1,5 +1,4 @@ import React, { useState } from "react"; -import PropTypes from "prop-types"; import { cn } from "../../utils/cn"; export type PillState = "default" | "hover" | "selected"; @@ -28,7 +27,7 @@ const pillColors = { selected: { backgroundColor: "#201E1E", // Solid dark color textColor: "#F6F0E6", // Light beige text - borderColor: "#201E1E", // Solid dark border + borderColor: "#201E1E", }, } as const;