Capítulo 917 de 988
:::info Deprecated @remotion/starburst is deprecated and will no longer be published starting with Remotion 5. 0.
export const MyComp: React.FC = () => {
return (
<AbsoluteFill>
<Solid
width={1280}
height={720}
color="black"
effects={[
starburst({
rays: 16,
colors: ['#ffdd00', '#ff8800', '#ff4400'],
rotation: 15,
smoothness: 0.1,
origin: [0.5, 0.5],
}),
]}
/>
</AbsoluteFill>
);
};