-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
22233: Added TraineeIcon, MINOR (#31)
- Loading branch information
1 parent
877cea7
commit 8f8a1df
Showing
3 changed files
with
51 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import type { FC } from "react"; | ||
import { type IconBaseProps } from "react-icons"; | ||
import { HiOutlineCubeTransparent } from "react-icons/hi2"; | ||
|
||
/** | ||
* A generic Trainee icon. | ||
* Where possible, an Identicon should be used. | ||
* An appropriate usage contexts would include: | ||
* - Create a trainee actions | ||
**/ | ||
export const TraineeIcon: FC<IconBaseProps> = (props) => ( | ||
<HiOutlineCubeTransparent {...props} /> | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
export * from "./MapDependentFeatureAttributesIcon"; | ||
export * from "./TraineeDefineIcon"; | ||
export * from "./TraineeIcon"; | ||
export * from "./TraineeLoadIcon"; | ||
export * from "./TraineeTrainIcon"; |