Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

heroicons

//Code from heroicons GitHub - https://github.com/tailwindlabs/heroicons

//Terminal - Install heroicons
npm install @heroicons/react

//Start using heroicons!
import { BeakerIcon } from '@heroicons/react/solid'

function MyComponent() {
  return (
    <div>
      <BeakerIcon className="h-5 w-5 text-blue-500"/>
      <p>Hello from heroicons!</p>
    </div>
  )
}
Comment

heroicons

npm install @heroicons/react
yarn add @heroicons/react
Comment

heroicons

// usage of hero icons
import { BeakerIcon } from '@heroicons/react/24/solid'

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

PREVIOUS NEXT
Code Example
Javascript :: hello world javascript 
Javascript :: sequelize exclude attribute 
Javascript :: span vertical align 
Javascript :: iframe in react native 
Javascript :: jquery check if field exist by name 
Javascript :: react native italic text 
Javascript :: node read file line 
Javascript :: Error during serialization or deserialization using the JSON JavaScriptSerializer. The length of the string exceeds the value set on the maxJsonLength property. 
Javascript :: js check if element into view 
Javascript :: document ready in jquery 
Javascript :: get last three characters of string javascript 
Javascript :: write in utf8 fs 
Javascript :: how to open browser for upload with click on element in jquery 
Javascript :: how to find prime numbers in an array in javascript 
Javascript :: socketio cdn 
Javascript :: js queryselector names 
Javascript :: javascript how to get a random element from an array 
Javascript :: bar chart height and with change in chart.js 
Javascript :: regex valid day 
Javascript :: javascript count occurrences of letter in string 
Javascript :: vue.js use scss in balise style 
Javascript :: add style javascript 
Javascript :: js form submit listener 
Javascript :: session storage 
Javascript :: js remove object from array by value 
Javascript :: acces vue instance from console 
Javascript :: detect os javascript 
Javascript :: jquery check if string contains specific word 
Javascript :: post antiforgerytoken jquery 
Javascript :: sort by price in javascript 
ADD CONTENT
Topic
Content
Source link
Name
4+9 =