import React from 'react'; import { useMovie } from '../hooks/useMovie' import { Arrow } from '../components/Arrow' import './Title.css' // size: "big" | "medium" | "small" | null // accent: string | null // accentLink: string | null export function Title(props) { const { navigate } = useMovie(); const size = props.size || "big"; const accentLink = props.accentLink || ""; const accent = props.accent || ""; return (
{accent.length > 0 ? (

accentLink.length > 0 && navigate(accentLink)} className={`title-accent ${accentLink.length > 0 ? 'title-accent-link' : ''}`}> {accentLink.length > 0 ? () : null}{accent}

) : null}

{props.children}

) }