swatch-book
html
<i data-lucide="swatch-book"></i>
tsx
import { SwatchBook } from 'lucide-react';
const App = () => {
return (
<SwatchBook />
);
};
export default App;
vue
<script setup>
import { SwatchBook } from 'lucide-vue-next';
</script>
<template>
<SwatchBook />
</template>
svelte
<script>
import { SwatchBook } from 'lucide-svelte';
</script>
<SwatchBook />
tsx
import { SwatchBook } from 'lucide-preact';
const App = () => {
return (
<SwatchBook />
);
};
export default App;
tsx
import { SwatchBook } from 'lucide-solid';
const App = () => {
return (
<SwatchBook />
);
};
export default App;
tsx
// app.module.ts
import { LucideAngularModule, SwatchBook } from 'lucide-angular';
@NgModule({
imports: [
LucideAngularModule.pick({ SwatchBook })
],
})
// app.component.html
<lucide-icon name="swatch-book"></lucide-icon>
html
<style>
@import ('~lucide-static/font/Lucide.css');
</style>
<div class="icon-swatch-book"></div>