Skip to content

Commit

Permalink
Use pf icons
Browse files Browse the repository at this point in the history
  • Loading branch information
ljmotta committed Dec 20, 2024
1 parent 80be77a commit 8e7a57b
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,7 @@ const List: React.FC<ListFieldProps> = (props: ListFieldProps) => {
!${props.disabled} && ${props.maxCount === undefined ? `${ref.stateSetter}((${ref.stateName} ?? []).concat([]))` : `!(${props.maxCount} <= (${ref.stateName}?.length ?? -1)) && ${ref.stateSetter}((${ref.stateName} ?? []).concat([]))`};
}}
>
+
{/* <PlusCircleIcon color='#0088ce' /> */}
<PlusCircleIcon color='#0088ce' />
</Button>
</SplitItem>
</Split>
Expand All @@ -101,7 +100,7 @@ const List: React.FC<ListFieldProps> = (props: ListFieldProps) => {
!${props.disabled} && ${props.minCount === undefined ? `${ref.stateSetter}(value)` : `!(${props.minCount} >= (${ref.stateName}?.length ?? -1)) && ${ref.stateSetter}(value)`};
}}
>
- { /* <MinusCircleIcon color='#cc0000' /> */}
<MinusCircleIcon color='#cc0000' />
</Button>
</div>
</div>)
Expand Down

0 comments on commit 8e7a57b

Please sign in to comment.