<iconify-icon icon="academicons:hypothesis"></iconify-icon>Add the Iconify script to your HTML head section
import { Icon } from '@iconify/react';
<Icon icon="academicons:hypothesis" />Install: npm install @iconify/react
<template>
<Icon icon="academicons:hypothesis" />
</template>
<script setup>
import { Icon } from '@iconify/vue';
</script>Install: npm install @iconify/vue
<script>
import Icon from '@iconify/svelte';
</script>
<Icon icon="academicons:hypothesis" />Install: npm install @iconify/svelte
<iconify-icon icon="academicons:hypothesis"></iconify-icon>Add the Iconify script to your index.html
/* Add to your CSS */
.icon-hypothesis::before {
content: '';
background-image: url('data:image/svg+xml,%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M95.997%2064c-17.648%200-31.998%2014.327-31.998%2031.998v320.006c0%2017.647%2014.326%2031.998%2031.998%2031.998h111.06L256.002%20512l48.94-63.998h111.06c17.647%200%2031.998-14.327%2031.998-31.998V95.998C448.001%2078.35%20433.673%2064%20416.003%2064zm32.001%2064h48.13v112.032s16.045-31.984%2047.871-31.984c32.003%200%2064.436%2015.954%2064.436%2065.695v110.26h-48.132v-95.944c0-26.06-16.302-36.06-32.304-32.055c-16%203.999-31.871%2020.995-31.871%2056.045v71.954h-48.13ZM368%20320.002c17.676%200%2032.002%2014.278%2032.002%2031.894c0%2017.618-14.326%2031.895-32.002%2031.895c-17.671%200-31.996-14.277-31.996-31.895c0-17.616%2014.325-31.894%2031.996-31.894%22%2F%3E');
}Use as CSS background or pseudo-element
<path fill="currentColor" d="M95.997 64c-17.648 0-31.998 14.327-31.998 31.998v320.006c0 17.647 14.326 31.998 31.998 31.998h111.06L256.002 512l48.94-63.998h111.06c17.647 0 31.998-14.327 31.998-31.998V95.998C448.001 78.35 433.673 64 416.003 64zm32.001 64h48.13v112.032s16.045-31.984 47.871-31.984c32.003 0 64.436 15.954 64.436 65.695v110.26h-48.132v-95.944c0-26.06-16.302-36.06-32.304-32.055c-16 3.999-31.871 20.995-31.871 56.045v71.954h-48.13ZM368 320.002c17.676 0 32.002 14.278 32.002 31.894c0 17.618-14.326 31.895-32.002 31.895c-17.671 0-31.996-14.277-31.996-31.895c0-17.616 14.325-31.894 31.996-31.894"/>Raw SVG code for direct use