secret/components/icons/IconNavMovie.js
2023-09-13 20:22:28 +05:30

20 lines
811 B
JavaScript

import { useRouter } from 'next/router'
export default function IconMovie() {
const router = useRouter()
return (
<svg
data-tooltip-id="my-tooltip"
data-tooltip-content="Movies"
className={router.pathname == '/movie' ? 'active-link' : 'icon-nav'}
fill='currentColor'
width='20'
height='20'
viewBox='0 0 20 20'
xmlns='http://www.w3.org/2000/svg'
>
<path d='M16.956 0H3.044A3.044 3.044 0 0 0 0 3.044v13.912A3.044 3.044 0 0 0 3.044 20h13.912A3.044 3.044 0 0 0 20 16.956V3.044A3.044 3.044 0 0 0 16.956 0ZM4 9H2V7h2v2Zm-2 2h2v2H2v-2Zm16-2h-2V7h2v2Zm-2 2h2v2h-2v-2Zm2-8.26V4h-2V2h1.26a.74.74 0 0 1 .74.74ZM2.74 2H4v2H2V2.74A.74.74 0 0 1 2.74 2ZM2 17.26V16h2v2H2.74a.74.74 0 0 1-.74-.74Zm16 0a.74.74 0 0 1-.74.74H16v-2h2v1.26Z' />
</svg>
)
}