12 lines
284 B
TypeScript
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}
|
|
/>
|
|
);
|
|
}
|