chore: switch from heroicons to primer icons

This commit is contained in:
Aarnav Tale 2024-05-04 15:03:21 -04:00
parent 61ae161496
commit c6cdcf35eb
No known key found for this signature in database
12 changed files with 1612 additions and 1471 deletions

View file

@ -1,4 +1,4 @@
import { InformationCircleIcon } from '@heroicons/react/24/outline'
import { InfoIcon } from '@primer/octicons-react'
import clsx from 'clsx'
import { type ReactNode } from 'react'
@ -9,7 +9,7 @@ export default function Notice({ children }: { readonly children: ReactNode }) {
'bg-slate-400 dark:bg-slate-700'
)}
>
<InformationCircleIcon className='h-6 w-6 text-white'/>
<InfoIcon className='h-6 w-6 text-white'/>
{children}
</div>
)