softicons.dev

regex icon

Free regex SVG icon, MIT licensed. Copy the SVG, install for React/Vue/Angular, or download. Part of the Softicons interface set.

Setup guide
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"
     fill="none" stroke="currentColor" stroke-width="2"
     stroke-linecap="round" stroke-linejoin="round">
  <path d="M17 3v10"/>
  <path d="m12.67 5.5 8.66 5"/>
  <path d="m12.67 10.5 8.66-5"/>
  <path d="M9 17a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-2Z"/>
</svg>
<!-- via the CDN — no build step -->
<img src="https://cdn.softicons.dev/v1/icons/interface/regex.svg"
     width="24" height="24" alt="regex icon">

<!-- …or paste the raw SVG from the SVG tab -->
import { RegexIcon } from "@softicons/react";

export default function Example() {
  return <RegexIcon size={24} strokeWidth={2} />;
}
<script setup>
import { RegexIcon } from "@softicons/vue";
</script>

<template>
  <RegexIcon :size="24" :stroke-width="2" />
</template>
import { RegexIconComponent } from "@softicons/angular";

@Component({
  standalone: true,
  imports: [RegexIconComponent],
  template: `<regex-icon [size]="24" [strokeWidth]="2" />`,
})
export class DemoComponent {}