aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/molecules/images
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2022-04-13 19:28:16 +0200
committerArmand Philippot <git@armandphilippot.com>2022-04-13 19:28:16 +0200
commit47e35fcd7c2c346f4799630bf6521d6a4bf49e85 (patch)
tree99228c523b6ced1d9c1e83a03a4dd9fc2468e4b0 /src/components/molecules/images
parent017d01680a933897df6ddd11d2e081730756250b (diff)
chore: add a Card component
Diffstat (limited to 'src/components/molecules/images')
-rw-r--r--src/components/molecules/images/responsive-image.tsx5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/components/molecules/images/responsive-image.tsx b/src/components/molecules/images/responsive-image.tsx
index 3d54e95..1d8787e 100644
--- a/src/components/molecules/images/responsive-image.tsx
+++ b/src/components/molecules/images/responsive-image.tsx
@@ -3,7 +3,10 @@ import Image, { ImageProps } from 'next/image';
import { VFC } from 'react';
import styles from './responsive-image.module.scss';
-type ResponsiveImageProps = Omit<ImageProps, 'alt' | 'width' | 'height'> & {
+export type ResponsiveImageProps = Omit<
+ ImageProps,
+ 'alt' | 'width' | 'height'
+> & {
/**
* An alternative text.
*/