From a802f94ebb152eb441f02d620a9ad573769e4e8e Mon Sep 17 00:00:00 2001 From: Tucker McCoy Date: Thu, 13 Aug 2026 14:35:04 -0400 Subject: [PATCH] fix(input): use TriangleAlert icon for error state --- packages/ui/package.json | 2 +- packages/ui/src/components/input/input.tsx | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/ui/package.json b/packages/ui/package.json index 9019a8e..11c039f 100644 --- a/packages/ui/package.json +++ b/packages/ui/package.json @@ -2,7 +2,7 @@ "name": "@eqtylab/equality", "description": "EQTYLab's component and token-based design system", "homepage": "https://equality.eqtylab.io/", - "version": "3.2.0", + "version": "3.2.1", "license": "Apache-2.0", "keywords": [ "component library", diff --git a/packages/ui/src/components/input/input.tsx b/packages/ui/src/components/input/input.tsx index 8156171..3cb5a82 100644 --- a/packages/ui/src/components/input/input.tsx +++ b/packages/ui/src/components/input/input.tsx @@ -1,5 +1,5 @@ import * as React from 'react'; -import { CircleAlert } from 'lucide-react'; +import { TriangleAlert } from 'lucide-react'; import styles from '@/components/input/input.module.css'; import { MotionCollapsibleContent } from '@/components/motion-collapsible/motion-collapsible'; @@ -55,7 +55,7 @@ const Input = React.forwardRef( .filter(Boolean) .join(' ') || undefined; - const errorIcon =