Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions src/components/pill/Pill.tsx
Original file line number Diff line number Diff line change
@@ -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";
Expand Down Expand Up @@ -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;

Expand Down
Loading