Skip to content

vote

vote • poll • ballot • political • social • check • tick

Created:

v0.110.0

Last changed:

v0.110.0

Contributors:

ptrgastkarsa-mistmere
html
<i data-lucide="vote"></i>
tsx
import { Vote } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

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