Refactor: Change component icon to Flaskconical
This commit is contained in:
parent
dc055c5ee6
commit
546eb2ae9a
3 changed files with 9 additions and 7 deletions
|
|
@ -370,8 +370,8 @@ export default function GenericNode({
|
|||
<span className="flex">
|
||||
Build{" "}
|
||||
<IconComponent
|
||||
name="Play"
|
||||
className=" h-5 fill-build-trigger stroke-build-trigger stroke-1"
|
||||
name="FlaskConical"
|
||||
className=" h-5 stroke-build-trigger stroke-1"
|
||||
/>{" "}
|
||||
flow to validate status.
|
||||
</span>
|
||||
|
|
@ -390,7 +390,7 @@ export default function GenericNode({
|
|||
>
|
||||
<div className="generic-node-status-position flex items-center justify-center">
|
||||
<IconComponent
|
||||
name="Play"
|
||||
name="FlaskConical"
|
||||
className={classNames(
|
||||
validationStatus && validationStatus.valid
|
||||
? "green-status"
|
||||
|
|
@ -399,7 +399,7 @@ export default function GenericNode({
|
|||
)}
|
||||
/>
|
||||
<IconComponent
|
||||
name="Play"
|
||||
name="FlaskConical"
|
||||
className={classNames(
|
||||
validationStatus && !validationStatus.valid
|
||||
? "red-status"
|
||||
|
|
@ -408,7 +408,7 @@ export default function GenericNode({
|
|||
)}
|
||||
/>
|
||||
<IconComponent
|
||||
name="Play"
|
||||
name="FlaskConical"
|
||||
className={classNames(
|
||||
!validationStatus || isBuilding
|
||||
? "yellow-status"
|
||||
|
|
|
|||
|
|
@ -293,13 +293,13 @@
|
|||
@apply opacity-100 animate-wiggle;
|
||||
}
|
||||
.green-status {
|
||||
@apply generic-node-status text-status-green fill-status-green;
|
||||
@apply generic-node-status text-status-green;
|
||||
}
|
||||
.red-status {
|
||||
@apply generic-node-status text-status-red fill-status-red;
|
||||
}
|
||||
.yellow-status {
|
||||
@apply generic-node-status text-status-yellow fill-status-yellow;
|
||||
@apply generic-node-status text-status-yellow;
|
||||
}
|
||||
.status-build-animation {
|
||||
@apply opacity-0;
|
||||
|
|
|
|||
|
|
@ -110,6 +110,7 @@ import {
|
|||
X,
|
||||
XCircle,
|
||||
Zap,
|
||||
FlaskConical,
|
||||
} from "lucide-react";
|
||||
import { FaApple, FaGithub } from "react-icons/fa";
|
||||
import { AWSIcon } from "../icons/AWS";
|
||||
|
|
@ -400,4 +401,5 @@ export const nodeIconsLucide: iconsType = {
|
|||
io: Cable,
|
||||
ScreenShare,
|
||||
Code,
|
||||
FlaskConical,
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue