diff --git a/src/app/components/hero/marquee.tsx b/src/app/components/hero/marquee.tsx index b8447998..ad40fe3d 100644 --- a/src/app/components/hero/marquee.tsx +++ b/src/app/components/hero/marquee.tsx @@ -12,14 +12,14 @@ import Marquee from 'react-fast-marquee' import { useMinTabletBreakpoint } from '~/hooks/use-media' import { PropsWithChildren } from 'react' -type MarqueeProps = PropsWithChildren<{ +type MarqueeProps = { style?: React.CSSProperties className?: string play?: boolean pauseOnHover?: boolean pauseOnClick?: boolean gradientColor?: string -}> +} export const HomeHeroMarquee = (props: MarqueeProps) => { const isMinTablet = useMinTabletBreakpoint()