Initial commit
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
.descIcon {
|
||||
margin: 0 5px 0 0;
|
||||
}
|
||||
14
src/components/ItemDescriptionIcons/ItemDescriptionIcons.tsx
Normal file
14
src/components/ItemDescriptionIcons/ItemDescriptionIcons.tsx
Normal file
@@ -0,0 +1,14 @@
|
||||
import DescIcon1 from "components/Icons/item/DescIcon1";
|
||||
import DescIcon2 from "components/Icons/item/DescIcon2";
|
||||
import DescIcon3 from "components/Icons/item/DescIcon3";
|
||||
import styles from "./ItemDescriptionIcons.module.css";
|
||||
|
||||
export function ItemDescriptionIcons({ className }: { className?: string }) {
|
||||
return (
|
||||
<div className={className}>
|
||||
<DescIcon1 className={styles.descIcon} />
|
||||
<DescIcon2 className={styles.descIcon} />
|
||||
<DescIcon3 className={styles.descIcon} />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user