Skip to content

search-code

find • scan • magnifier • magnifying glass • grep • chevrons • <>

Created:

v0.240.0

Last changed:

v0.373.0

Contributors:

danielbayleyjguddas
html
<i data-lucide="search-code"></i>
tsx
import { SearchCode } from 'lucide-react';

const App = () => {
  return (
    <SearchCode />
  );
};

export default App;
vue
<script setup>
  import { SearchCode } from 'lucide-vue-next';
</script>

<template>
  <SearchCode />
</template>
svelte
<script>
import { SearchCode } from 'lucide-svelte';
</script>

<SearchCode />
tsx
import { SearchCode } from 'lucide-preact';

const App = () => {
  return (
    <SearchCode />
  );
};

export default App;
tsx
import { SearchCode } from 'lucide-solid';

const App = () => {
  return (
    <SearchCode />
  );
};

export default App;
tsx
// app.module.ts
import { LucideAngularModule, SearchCode } from 'lucide-angular';

@NgModule({
  imports: [
    LucideAngularModule.pick({ SearchCode })
  ],
})

// app.component.html
<lucide-icon name="search-code"></lucide-icon>
html
<style>
@import ('~lucide-static/font/Lucide.css');
</style>

<div class="icon-search-code"></div>