Skip to content

beef

food • dish • restaurant • course • meal • meat • bbq • steak

Created:

v0.106.0

Last changed:

v0.133.0

Contributors:

ericfenniskarsa-mistmere
html
<i data-lucide="beef"></i>
tsx
import { Beef } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

<div class="icon-beef"></div>
dart
Icon(LucideIcons.beef);