mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-27 11:18:30 -04:00
21 lines
619 B
TypeScript
21 lines
619 B
TypeScript
import Image from "../Image/Image";
|
|
import innerText from "react-innertext";
|
|
import type { ReactNode } from "react";
|
|
import type { ImageProps as NextImageProps } from "next/image";
|
|
|
|
type Props = Omit<NextImageProps, "alt"> & {
|
|
children: ReactNode; // caption (can be in markdown, yay!!!)
|
|
alt?: string; // becomes optional -- pulled from plaintext-ified caption if missing
|
|
};
|
|
|
|
const Figure = ({ children, alt, ...imageProps }: Props) => {
|
|
return (
|
|
<figure>
|
|
<Image alt={alt || innerText(children)} {...imageProps} />
|
|
<figcaption>{children}</figcaption>
|
|
</figure>
|
|
);
|
|
};
|
|
|
|
export default Figure;
|