Files
hushroom/src/widgets/flight-background/ui/FlightBackgroundWidget.tsx

12 lines
284 B
TypeScript

import { FlightStarfieldCanvas } from '@/features/flight-starfield';
export function FlightBackgroundWidget({ isPaused }: { isPaused: boolean }) {
return (
<FlightStarfieldCanvas
vanishYOffset={-68}
centerProtectRadius={200}
isPaused={isPaused}
/>
);
}