backspace icon
backspace from Reicon by REICON · Outline · Text-formatting · MIT Free for personal and commercial use.
- Name
- backspace
- Set
- Reicon
- Style
- Outline
- Category
- Text-formatting
- Viewbox
- 24×24
- License
- MIT
2 other variants in Reicon
The same icon in other sets
All backspace icons →backspaceAkar IconsbackspaceBootstrap Iconsbackspace-fillEva IconsbackspaceFont Awesome Solidbackspace-16-filledFluent UI System Iconsbackspacecss.ggbackspaceHeroIconsbackspaceIonIconsbackspaceLine AwesomebackspaceMajesticonsbackspaceMaterial SymbolsbackspaceMaterial Symbols LightbackspaceMaterial Design IconsbackspacePhosphorbackspace-boldSolarbackspaceTabler Iconsbackspace-outlineTeenyiconsbackspaceUnicons
More text-formatting icons from Reicon
Use the backspace icon
SVG
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><g fill="currentColor"><path d="M11.03 8.97a.75.75 0 0 0-1.06 1.06L11.94 12l-1.97 1.97a.75.75 0 1 0 1.06 1.06L13 13.06l1.97 1.97a.75.75 0 0 0 1.06-1.06L14.06 12l1.97-1.97a.75.75 0 0 0-1.06-1.06L13 10.94z"/><path fill-rule="evenodd" d="M21.32 4.634c-.766-.745-1.735-1.074-2.933-1.231c-1.168-.153-2.662-.153-4.553-.153h-2.728c-1.083 0-1.948 0-2.656.066c-.73.068-1.35.21-1.935.525c-.586.316-1.04.754-1.49 1.324c-.433.551-.892 1.266-1.465 2.158L2.837 8.45c-.478.744-.869 1.352-1.135 1.882c-.278.553-.452 1.08-.452 1.669s.174 1.116.452 1.67c.266.53.657 1.137 1.135 1.881l.723 1.126c.573.892 1.032 1.607 1.466 2.158c.449.57.903 1.008 1.49 1.324c.584.315 1.203.457 1.934.525c.708.066 1.573.066 2.656.066h2.728c1.891 0 3.385 0 4.553-.153c1.198-.157 2.167-.486 2.932-1.231c.768-.747 1.11-1.698 1.273-2.874c.158-1.14.158-2.598.158-4.434v-.116c0-1.836 0-3.293-.158-4.434c-.162-1.176-.505-2.126-1.273-2.874m-7.541.116c1.958 0 3.354.002 4.413.14c1.04.136 1.642.392 2.081.82c.436.423.695 1.001.834 2.004c.141 1.026.143 2.379.143 4.286s-.002 3.26-.143 4.286c-.139 1.003-.398 1.58-.834 2.005c-.439.427-1.041.683-2.081.819c-1.06.139-2.455.14-4.413.14h-2.637c-1.127 0-1.922 0-2.553-.06c-.615-.057-1.017-.165-1.362-.352c-.344-.185-.65-.457-1.023-.932c-.384-.487-.804-1.14-1.402-2.071l-.681-1.06c-.505-.787-.852-1.328-1.078-1.779c-.219-.435-.293-.725-.293-.996s.074-.561.293-.996c.226-.45.573-.992 1.078-1.779l.68-1.06c.599-.93 1.02-1.584 1.403-2.071c.374-.475.68-.747 1.023-.932c.345-.187.747-.295 1.362-.353c.63-.058 1.426-.059 2.553-.059z" clip-rule="evenodd"/></g></svg>
React
import type { SVGProps } from "react";
export function ReiconBackspace(props: SVGProps<SVGSVGElement>) {
return (
<svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><g fill="currentColor"><path d="M11.03 8.97a.75.75 0 0 0-1.06 1.06L11.94 12l-1.97 1.97a.75.75 0 1 0 1.06 1.06L13 13.06l1.97 1.97a.75.75 0 0 0 1.06-1.06L14.06 12l1.97-1.97a.75.75 0 0 0-1.06-1.06L13 10.94z"/><path fillRule="evenodd" d="M21.32 4.634c-.766-.745-1.735-1.074-2.933-1.231c-1.168-.153-2.662-.153-4.553-.153h-2.728c-1.083 0-1.948 0-2.656.066c-.73.068-1.35.21-1.935.525c-.586.316-1.04.754-1.49 1.324c-.433.551-.892 1.266-1.465 2.158L2.837 8.45c-.478.744-.869 1.352-1.135 1.882c-.278.553-.452 1.08-.452 1.669s.174 1.116.452 1.67c.266.53.657 1.137 1.135 1.881l.723 1.126c.573.892 1.032 1.607 1.466 2.158c.449.57.903 1.008 1.49 1.324c.584.315 1.203.457 1.934.525c.708.066 1.573.066 2.656.066h2.728c1.891 0 3.385 0 4.553-.153c1.198-.157 2.167-.486 2.932-1.231c.768-.747 1.11-1.698 1.273-2.874c.158-1.14.158-2.598.158-4.434v-.116c0-1.836 0-3.293-.158-4.434c-.162-1.176-.505-2.126-1.273-2.874m-7.541.116c1.958 0 3.354.002 4.413.14c1.04.136 1.642.392 2.081.82c.436.423.695 1.001.834 2.004c.141 1.026.143 2.379.143 4.286s-.002 3.26-.143 4.286c-.139 1.003-.398 1.58-.834 2.005c-.439.427-1.041.683-2.081.819c-1.06.139-2.455.14-4.413.14h-2.637c-1.127 0-1.922 0-2.553-.06c-.615-.057-1.017-.165-1.362-.352c-.344-.185-.65-.457-1.023-.932c-.384-.487-.804-1.14-1.402-2.071l-.681-1.06c-.505-.787-.852-1.328-1.078-1.779c-.219-.435-.293-.725-.293-.996s.074-.561.293-.996c.226-.45.573-.992 1.078-1.779l.68-1.06c.599-.93 1.02-1.584 1.403-2.071c.374-.475.68-.747 1.023-.932c.345-.187.747-.295 1.362-.353c.63-.058 1.426-.059 2.553-.059z" clipRule="evenodd"/></g></svg>
);
}
Vue
<template> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><g fill="currentColor"><path d="M11.03 8.97a.75.75 0 0 0-1.06 1.06L11.94 12l-1.97 1.97a.75.75 0 1 0 1.06 1.06L13 13.06l1.97 1.97a.75.75 0 0 0 1.06-1.06L14.06 12l1.97-1.97a.75.75 0 0 0-1.06-1.06L13 10.94z"/><path fill-rule="evenodd" d="M21.32 4.634c-.766-.745-1.735-1.074-2.933-1.231c-1.168-.153-2.662-.153-4.553-.153h-2.728c-1.083 0-1.948 0-2.656.066c-.73.068-1.35.21-1.935.525c-.586.316-1.04.754-1.49 1.324c-.433.551-.892 1.266-1.465 2.158L2.837 8.45c-.478.744-.869 1.352-1.135 1.882c-.278.553-.452 1.08-.452 1.669s.174 1.116.452 1.67c.266.53.657 1.137 1.135 1.881l.723 1.126c.573.892 1.032 1.607 1.466 2.158c.449.57.903 1.008 1.49 1.324c.584.315 1.203.457 1.934.525c.708.066 1.573.066 2.656.066h2.728c1.891 0 3.385 0 4.553-.153c1.198-.157 2.167-.486 2.932-1.231c.768-.747 1.11-1.698 1.273-2.874c.158-1.14.158-2.598.158-4.434v-.116c0-1.836 0-3.293-.158-4.434c-.162-1.176-.505-2.126-1.273-2.874m-7.541.116c1.958 0 3.354.002 4.413.14c1.04.136 1.642.392 2.081.82c.436.423.695 1.001.834 2.004c.141 1.026.143 2.379.143 4.286s-.002 3.26-.143 4.286c-.139 1.003-.398 1.58-.834 2.005c-.439.427-1.041.683-2.081.819c-1.06.139-2.455.14-4.413.14h-2.637c-1.127 0-1.922 0-2.553-.06c-.615-.057-1.017-.165-1.362-.352c-.344-.185-.65-.457-1.023-.932c-.384-.487-.804-1.14-1.402-2.071l-.681-1.06c-.505-.787-.852-1.328-1.078-1.779c-.219-.435-.293-.725-.293-.996s.074-.561.293-.996c.226-.45.573-.992 1.078-1.779l.68-1.06c.599-.93 1.02-1.584 1.403-2.071c.374-.475.68-.747 1.023-.932c.345-.187.747-.295 1.362-.353c.63-.058 1.426-.059 2.553-.059z" clip-rule="evenodd"/></g></svg> </template>
CSS
.icon-backspace {
width: 24px;
height: 24px;
background-color: currentColor;
-webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%221em%22%20height%3D%221em%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cg%20fill%3D%22currentColor%22%3E%3Cpath%20d%3D%22M11.03%208.97a.75.75%200%200%200-1.06%201.06L11.94%2012l-1.97%201.97a.75.75%200%201%200%201.06%201.06L13%2013.06l1.97%201.97a.75.75%200%200%200%201.06-1.06L14.06%2012l1.97-1.97a.75.75%200%200%200-1.06-1.06L13%2010.94z%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20d%3D%22M21.32%204.634c-.766-.745-1.735-1.074-2.933-1.231c-1.168-.153-2.662-.153-4.553-.153h-2.728c-1.083%200-1.948%200-2.656.066c-.73.068-1.35.21-1.935.525c-.586.316-1.04.754-1.49%201.324c-.433.551-.892%201.266-1.465%202.158L2.837%208.45c-.478.744-.869%201.352-1.135%201.882c-.278.553-.452%201.08-.452%201.669s.174%201.116.452%201.67c.266.53.657%201.137%201.135%201.881l.723%201.126c.573.892%201.032%201.607%201.466%202.158c.449.57.903%201.008%201.49%201.324c.584.315%201.203.457%201.934.525c.708.066%201.573.066%202.656.066h2.728c1.891%200%203.385%200%204.553-.153c1.198-.157%202.167-.486%202.932-1.231c.768-.747%201.11-1.698%201.273-2.874c.158-1.14.158-2.598.158-4.434v-.116c0-1.836%200-3.293-.158-4.434c-.162-1.176-.505-2.126-1.273-2.874m-7.541.116c1.958%200%203.354.002%204.413.14c1.04.136%201.642.392%202.081.82c.436.423.695%201.001.834%202.004c.141%201.026.143%202.379.143%204.286s-.002%203.26-.143%204.286c-.139%201.003-.398%201.58-.834%202.005c-.439.427-1.041.683-2.081.819c-1.06.139-2.455.14-4.413.14h-2.637c-1.127%200-1.922%200-2.553-.06c-.615-.057-1.017-.165-1.362-.352c-.344-.185-.65-.457-1.023-.932c-.384-.487-.804-1.14-1.402-2.071l-.681-1.06c-.505-.787-.852-1.328-1.078-1.779c-.219-.435-.293-.725-.293-.996s.074-.561.293-.996c.226-.45.573-.992%201.078-1.779l.68-1.06c.599-.93%201.02-1.584%201.403-2.071c.374-.475.68-.747%201.023-.932c.345-.187.747-.295%201.362-.353c.63-.058%201.426-.059%202.553-.059z%22%20clip-rule%3D%22evenodd%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center / contain;
mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%221em%22%20height%3D%221em%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cg%20fill%3D%22currentColor%22%3E%3Cpath%20d%3D%22M11.03%208.97a.75.75%200%200%200-1.06%201.06L11.94%2012l-1.97%201.97a.75.75%200%201%200%201.06%201.06L13%2013.06l1.97%201.97a.75.75%200%200%200%201.06-1.06L14.06%2012l1.97-1.97a.75.75%200%200%200-1.06-1.06L13%2010.94z%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20d%3D%22M21.32%204.634c-.766-.745-1.735-1.074-2.933-1.231c-1.168-.153-2.662-.153-4.553-.153h-2.728c-1.083%200-1.948%200-2.656.066c-.73.068-1.35.21-1.935.525c-.586.316-1.04.754-1.49%201.324c-.433.551-.892%201.266-1.465%202.158L2.837%208.45c-.478.744-.869%201.352-1.135%201.882c-.278.553-.452%201.08-.452%201.669s.174%201.116.452%201.67c.266.53.657%201.137%201.135%201.881l.723%201.126c.573.892%201.032%201.607%201.466%202.158c.449.57.903%201.008%201.49%201.324c.584.315%201.203.457%201.934.525c.708.066%201.573.066%202.656.066h2.728c1.891%200%203.385%200%204.553-.153c1.198-.157%202.167-.486%202.932-1.231c.768-.747%201.11-1.698%201.273-2.874c.158-1.14.158-2.598.158-4.434v-.116c0-1.836%200-3.293-.158-4.434c-.162-1.176-.505-2.126-1.273-2.874m-7.541.116c1.958%200%203.354.002%204.413.14c1.04.136%201.642.392%202.081.82c.436.423.695%201.001.834%202.004c.141%201.026.143%202.379.143%204.286s-.002%203.26-.143%204.286c-.139%201.003-.398%201.58-.834%202.005c-.439.427-1.041.683-2.081.819c-1.06.139-2.455.14-4.413.14h-2.637c-1.127%200-1.922%200-2.553-.06c-.615-.057-1.017-.165-1.362-.352c-.344-.185-.65-.457-1.023-.932c-.384-.487-.804-1.14-1.402-2.071l-.681-1.06c-.505-.787-.852-1.328-1.078-1.779c-.219-.435-.293-.725-.293-.996s.074-.561.293-.996c.226-.45.573-.992%201.078-1.779l.68-1.06c.599-.93%201.02-1.584%201.403-2.071c.374-.475.68-.747%201.023-.932c.345-.187.747-.295%201.362-.353c.63-.058%201.426-.059%202.553-.059z%22%20clip-rule%3D%22evenodd%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center / contain;
}Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/reicon/backspace.svg?color=%231a73e8&size=48