Updated filter bar.

This commit is contained in:
Mike Cao 2025-04-02 23:18:03 -05:00
parent 34a8fa100c
commit 2b99274895
11 changed files with 1101 additions and 1048 deletions

View file

@ -1,5 +1,5 @@
import classNames from 'classnames';
import { Icon, Icons } from '@umami/react-zen';
import { Icon, Icons, Text } from '@umami/react-zen';
import { ReactNode } from 'react';
import styles from './ChangeLabel.module.css';
@ -38,7 +38,7 @@ export function ChangeLabel({
<Icons.Arrow />
</Icon>
)}
{children || value}
<Text>{children || value}</Text>
</div>
);
}