-
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.
🐛 fix image src import method and some bugs
- Loading branch information
Showing
10 changed files
with
35 additions
and
83 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
This file was deleted.
Oops, something went wrong.
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,12 +1,8 @@ | ||
import IconContainer from "./IconContainer"; | ||
import dimensions from "../../../assets/icons/dimensions.png"; | ||
|
||
const DimensionsIcon = () => { | ||
return ( | ||
<IconContainer | ||
imgUrl="src/assets/icons/dimensions.png" | ||
label="Dimensions" | ||
/> | ||
); | ||
return <IconContainer imgUrl={dimensions} label="Dimensions" />; | ||
}; | ||
|
||
export default DimensionsIcon; |
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,9 +1,8 @@ | ||
import IconContainer from "./IconContainer"; | ||
import spatial from "../../../assets/icons/spatial.png"; | ||
|
||
const SpatialIcon = () => { | ||
return ( | ||
<IconContainer imgUrl="src/assets/icons/spatial.png" label="Spatial" /> | ||
); | ||
return <IconContainer imgUrl={spatial} label="Spatial" />; | ||
}; | ||
|
||
export default SpatialIcon; |
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,12 +1,8 @@ | ||
import IconContainer from "./IconContainer"; | ||
import timeRange from "../../../assets/logos/time-range.png"; | ||
|
||
const TimeRangeIcon = () => { | ||
return ( | ||
<IconContainer | ||
imgUrl="src/assets/logos/time-range.png" | ||
label="Time Range" | ||
/> | ||
); | ||
return <IconContainer imgUrl={timeRange} label="Time Range" />; | ||
}; | ||
|
||
export default TimeRangeIcon; |
This file was deleted.
Oops, something went wrong.
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
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