We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b8e4038 commit c32015bCopy full SHA for c32015b
src/components/pill/Pill.tsx
@@ -1,5 +1,4 @@
1
import React, { useState } from "react";
2
-import PropTypes from "prop-types";
3
import { cn } from "../../utils/cn";
4
5
export type PillState = "default" | "hover" | "selected";
@@ -28,7 +27,7 @@ const pillColors = {
28
27
selected: {
29
backgroundColor: "#201E1E", // Solid dark color
30
textColor: "#F6F0E6", // Light beige text
31
- borderColor: "#201E1E", // Solid dark border
+ borderColor: "#201E1E",
32
},
33
} as const;
34
0 commit comments