Skip to content

Commit c32015b

Browse files
authored
fix: removed unsued pill props (#50)
1 parent b8e4038 commit c32015b

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/components/pill/Pill.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import React, { useState } from "react";
2-
import PropTypes from "prop-types";
32
import { cn } from "../../utils/cn";
43

54
export type PillState = "default" | "hover" | "selected";
@@ -28,7 +27,7 @@ const pillColors = {
2827
selected: {
2928
backgroundColor: "#201E1E", // Solid dark color
3029
textColor: "#F6F0E6", // Light beige text
31-
borderColor: "#201E1E", // Solid dark border
30+
borderColor: "#201E1E",
3231
},
3332
} as const;
3433

0 commit comments

Comments
 (0)