diff --git a/src/components/ui/icon/icon.tsx b/src/components/ui/icon/icon.tsx index 0fe98623c..3918ae918 100644 --- a/src/components/ui/icon/icon.tsx +++ b/src/components/ui/icon/icon.tsx @@ -21,7 +21,7 @@ interface IIcon extends Pick, 'strokeWidth'> { 'data-testid'?: string; } -/** Renders and SVG icon with optional counter. */ +/** Renders an SVG or image icon with optional counter. */ const Icon: React.FC = ({ src, alt, count, size, countMax, ...filteredProps }): JSX.Element => { const isSVG = src.endsWith('.svg');