Skip to content

Commit

Permalink
refactor(Alert): make neutral
Browse files Browse the repository at this point in the history
  • Loading branch information
kripod committed Dec 10, 2023
1 parent c48db0c commit 3929890
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Alert.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export function Alert({ children }: AlertProps) {
return (
<div
role="alert"
className="grid grid-cols-[auto_1fr] gap-x-2 rounded-2xl border border-ui-primary-2 bg-ui-primary-1 p-4 text-base text-ui-primary-5"
className="grid grid-cols-[auto_1fr] gap-x-2 rounded-2xl border border-ui-neutral-2 bg-ui-neutral-1 p-4 text-base text-ui-neutral-5"
>
<InformationCircleIcon className="h-6 w-6" />
{children}
Expand Down

0 comments on commit 3929890

Please sign in to comment.