Skip to content

Commit

Permalink
✨ update entity selector toggle icon (#4302)
Browse files Browse the repository at this point in the history
  • Loading branch information
sophiamersmann authored Dec 13, 2024
1 parent 66de622 commit 6842825
Showing 1 changed file with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,7 @@ import React from "react"
import { computed } from "mobx"
import { observer } from "mobx-react"
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome/index.js"
import {
faPencilAlt,
faEye,
faRightLeft,
} from "@fortawesome/free-solid-svg-icons"
import { faEye, faRightLeft, faPen } from "@fortawesome/free-solid-svg-icons"
import classnames from "classnames"

export interface EntitySelectionManager {
Expand Down Expand Up @@ -66,7 +62,7 @@ export class EntitySelectionToggle extends React.Component<{
? {
action: "Edit",
entity: entityTypePlural,
icon: <FontAwesomeIcon icon={faPencilAlt} />,
icon: <FontAwesomeIcon icon={faPen} />,
}
: null
}
Expand Down

0 comments on commit 6842825

Please sign in to comment.