From b1e934e229c336064edeaa59455893258dd48bee Mon Sep 17 00:00:00 2001 From: Pete Watters <2938440+pete-watters@users.noreply.github.com> Date: Fri, 3 Nov 2023 15:27:09 +0000 Subject: [PATCH] chore: update icon, closes #4166 --- src/app/components/error-label.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/components/error-label.tsx b/src/app/components/error-label.tsx index 54a3f73df6a..4e8a76a961a 100644 --- a/src/app/components/error-label.tsx +++ b/src/app/components/error-label.tsx @@ -1,8 +1,8 @@ -import { FiAlertCircle } from 'react-icons/fi'; - import { css } from 'leather-styles/css'; import { HStack, HstackProps } from 'leather-styles/jsx'; +import { AlertIcon } from './icons/alert-icon'; + export function ErrorLabel({ children, ...rest }: HstackProps) { return ( - + {children} );