Commit 7f6980c committed May 25, 2024 · 1 / 1
1 parent 010e6c6 commit 7f6980c Copy full SHA for 7f6980c
File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
- import Image from "next/image " ;
1
+ import { Image } from "@nextui-org/react " ;
2
2
import classes from "./ImageStack.module.scss" ;
3
3
import clsx from "clsx" ;
4
4
5
5
const ImageStack = ( props : { images : [ string , string , string ] } ) => {
6
6
return (
7
7
< div className = { clsx ( classes . Holder ) } >
8
8
< div className = { clsx ( classes . StackImage ) } >
9
- < Image src = { props . images [ 0 ] } height = { 200 } width = { 200 } alt = "stack of image" />
9
+ < Image radius = "none" src = { props . images [ 0 ] } height = { 200 } width = { 200 } alt = "stack of image" />
10
10
</ div >
11
11
< div className = { clsx ( classes . StackImage ) } >
12
- < Image src = { props . images [ 1 ] } height = { 200 } width = { 200 } alt = "stack of image" />
12
+ < Image radius = "none" src = { props . images [ 1 ] } height = { 200 } width = { 200 } alt = "stack of image" />
13
13
</ div >
14
14
< div className = { clsx ( classes . StackImage ) } >
15
- < Image src = { props . images [ 2 ] } height = { 200 } width = { 200 } alt = "stack of image" />
15
+ < Image radius = "none" src = { props . images [ 2 ] } height = { 200 } width = { 200 } alt = "stack of image" />
16
16
</ div >
17
17
</ div >
18
18
) ;
You can’t perform that action at this time.
0 commit comments