diff --git a/app/components/common/Iframe.tsx b/app/components/common/Iframe.tsx new file mode 100644 index 0000000..7a6de69 --- /dev/null +++ b/app/components/common/Iframe.tsx @@ -0,0 +1,19 @@ +import clsx from "clsx"; + +type IframeProps = { + src: string; + width?: string; + height?: string; + className?: string; +}; + +export function Iframe(props: IframeProps) { + return ( +