Lucide V1 发布了!🚀
你现在浏览的是 v1 站点,如需查看 v0,请前往 v0 站点

Skip to content

vote

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

创建时间:

v0.110.0

最后修改:

v0.575.0

Contributors:

ptrgastkarsa-mistmere
html
<script>
import { createIcons, vote } from 'lucide';

createIcons({
  icons: {
    vote
  }
});
</script>

<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';
</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
<div class="icon-vote"></div>

看看这个图标的实际效果

错误
功能
Vote
112
8
11