smaller icons

This commit is contained in:
anovazzi1 2023-06-14 18:31:55 -03:00
commit 7aa437e92f
2 changed files with 3 additions and 3 deletions

View file

@ -30,7 +30,7 @@ export const CardComponent = ({ flow, id, onDelete, button }: { flow: FlowType;
<button
onClick={onDelete}
>
<Trash2 className="w-5 text-primary opacity-0 group-hover:opacity-100 transition-all" />
<Trash2 className="w-4 h-4 text-primary opacity-0 group-hover:opacity-100 transition-all" />
</button>
}
</CardTitle>

View file

@ -36,7 +36,7 @@ const NodeToolbarComponent = (props) => {
props.deleteNode(props.data.id);
}}
>
<Trash2 className="w-5 h-5 dark:text-gray-300"></Trash2>
<Trash2 className="w-4 h-4 dark:text-gray-300"></Trash2>
</button>
</ShadTooltip>
@ -64,7 +64,7 @@ const NodeToolbarComponent = (props) => {
);
}}
>
<Copy className="w-5 h-5 mr-2 dark:text-gray-300"></Copy>
<Copy className="w-4 h-4 dark:text-gray-300"></Copy>
</button>
</ShadTooltip>