From 12c9491e7a560eb09d03f244a80c3b9c8f45aaaf Mon Sep 17 00:00:00 2001 From: devartes Date: Wed, 11 Jan 2023 15:24:19 -0300 Subject: [PATCH] feat: adicionando componente --- src/components/ImageList/ImageList.tsx | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/components/ImageList/ImageList.tsx diff --git a/src/components/ImageList/ImageList.tsx b/src/components/ImageList/ImageList.tsx new file mode 100644 index 0000000..89a81ab --- /dev/null +++ b/src/components/ImageList/ImageList.tsx @@ -0,0 +1,16 @@ +interface iconProps { + src: string; + alt: string; + className: string; +} + +const Icon = (props: iconProps) => { + const { src, alt, className } = props; + return ( +
  • + {alt} +
  • + ); +}; + +export { Icon };