Refactored icons.

This commit is contained in:
Mike Cao
2025-05-27 00:50:28 -07:00
parent 18eceee4c4
commit 99330a1a4d
86 changed files with 310 additions and 273 deletions

View File

@@ -3,7 +3,6 @@ import {
Row,
Pressable,
Icon,
Icons,
Modal,
DialogTrigger,
Dialog,
@@ -11,6 +10,7 @@ import {
useToast,
} from '@umami/react-zen';
import { TeamMemberEditForm } from './TeamMemberEditForm';
import { Edit } from '@/components/icons';
export function TeamMemberEditButton({
teamId,
@@ -38,7 +38,7 @@ export function TeamMemberEditButton({
<Pressable>
<Row alignItems="center" gap>
<Icon>
<Icons.Edit />
<Edit />
</Icon>
<Text>{formatMessage(labels.edit)}</Text>
</Row>