Skip to content

Commit

Permalink
Updated feature pill icon
Browse files Browse the repository at this point in the history
  • Loading branch information
Cosmin-Parvulescu committed Jul 18, 2023
1 parent 08a35c1 commit e5c34d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/design-system/src/atoms/pills/FeaturePill.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ export type FeaturePillProps = {
}

export const FeaturePill = ({ Icon, text }: FeaturePillProps) => (
<Pill className="bg-gray-600 flex flex-row items-center gap-2">
{Icon && <Icon className="text-white" />}
<Pill className="bg-gray-600 flex flex-row items-center gap-1">
{Icon && <Icon className="w-3.5 h-3.5 text-white" />}
<Text size="xs" weight="medium" className="text-white">
{text}
</Text>
Expand Down

0 comments on commit e5c34d2

Please sign in to comment.