import { useNavigate } from 'react-router-dom'; import * as styles from './BackButton.styles'; import { BUTTON_TEXT, ICON_PATH, ICON_VIEWBOX, STROKE_WIDTH } from './BackButton.constants'; export default function BackButton() { const navigate = useNavigate(); return ( ); }