Skip to content

regex

search • text • code

Created:

v0.14.0

Last changed:

v0.18.0

Contributors:

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

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

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

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

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

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

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

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

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

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

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

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