Capítulo 575 de 988
_Part of the @remotion/effects package.
export const MyComp: React.FC = () => {
return (
<AbsoluteFill>
<HtmlInCanvas
width={1280}
height={720}
effects={[
dropShadow({
radius: 24,
offsetX: 16,
offsetY: 16,
opacity: 0.6,
color: '#000000',
}),
]}
>
<div
style={{
backgroundColor: 'white',
borderRadius: 32,
fontSize: 72,
padding: 80,
}}
>
Hello
</div>
</HtmlInCanvas>
</AbsoluteFill>
);
};