[components][iFrame] Change iFrame height

This commit is contained in:
lucasmbispo
2024-06-04 09:38:12 -03:00
parent 30e7c6379f
commit 9ff25ed7c4
3 changed files with 7 additions and 2 deletions

View File

@@ -11,7 +11,7 @@ export function Iframe({ data, style }: IframeProps) {
return (
<iframe
src={url}
style={style ?? { width: `100%`, height: `100%` }}
style={style ?? { width: `100%`, height: `600px` }}
></iframe>
);
}