Skip to content

ampersand

and • typography • operator • join • concatenate • code • &

Created:

v0.231.0

Last changed:

v0.231.0

Contributors:

danielbayleykarsa-mistmere
html
<i data-lucide="ampersand"></i>
tsx
import { Ampersand } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

<div class="icon-ampersand"></div>