<ImageGrid />
The imagegrid component makes it easy to showcase images in an elegant manner.
Image
Code - structure
<ImageGrid
className=""
data={gridImageData}
bgColor="#232323"
border="#232323"
/>
Data
export const gridImageData = [
{
path: "/assets/icons/nextjs.svg",
label: "Next Js"
},
{
path: "/assets/icons/react.svg",
label: "React"
}
]
Props
Option's (props) | Values |
---|---|
data | data={gridImageData} path : Image path. label : Image box hover label. |
className | Custom css className (optional). |
bgColor | Image box background color. |
border | Image box border color. |