Skip to content

variable

code • coding • programming • symbol • calculate • algebra • x • parentheses • parenthesis • brackets • parameter • ( • )

Created:

v0.215.0

Last changed:

v0.215.0

Contributors:

danielbayleyjguddas
html
<i data-lucide="variable"></i>
tsx
import { Variable } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

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