import { styled, theme } from "../../lib/styles/stitches.config"; import type { ComponentPropsWithoutRef } from "react"; const RoundedIFrame = styled("iframe", { width: "100%", display: "block", margin: "1em auto", border: `2px solid ${theme.colors.kindaLight}`, borderRadius: theme.radii.corner, }); export type IFrameProps = ComponentPropsWithoutRef & { src: string; height: number; width?: number; // defaults to 100% allowScripts?: boolean; noScroll?: boolean; }; const IFrame = ({ src, title, height, width, allowScripts, noScroll, css, ...rest }: IFrameProps) => { return ( ); }; export default IFrame;