본문 바로가기

React

[Portfolio 포트폴리오] 리액트에서 heroicons 설치 react heroicons install with yarn

heroicons install

yarn add @heroicons/react

 

사용법

import { BeakerIcon } from '@heroicons/react/24/solid'

function MyComponent() {
  return (
    <div>
      <BeakerIcon className="h-6 w-6 text-blue-500" />
      <p>...</p>
    </div>
  )
}