paperclip3 icon
paperclip3 from Reicon by REICON · Outline · Messages · MIT Free for personal and commercial use.
- Name
- paperclip3
- Set
- Reicon
- Style
- Outline
- Category
- Messages
- Viewbox
- 24×24
- License
- MIT
2 other variants in Reicon
More messages icons from Reicon
at-signchatchat-checkchat-dotschat-linechat-minuschat-pluschat-roundchat-round-callchat-round-checkchat-round-dotschat-round-likechat-round-linechat-round-moneychat-round-unreadchat-round-videochat-squarechat-square-arrowchat-square-callchat-square-checkchat-square-codechat-square-likechat-unreadchat-x
Use the paperclip3 icon
SVG
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" fill-rule="evenodd" d="M10.731 1.928a6.12 6.12 0 0 1 5.598 0c.87.447 1.66 1.245 2.972 2.569l.117.118l.116.116c1.313 1.325 2.103 2.122 2.546 2.999a6.25 6.25 0 0 1 0 5.632c-.443.877-1.233 1.674-2.546 2.999l-.116.116l-3.714 3.748c-.315.318-.525.53-.733.691a3.97 3.97 0 0 1-4.87 0c-.209-.161-.419-.373-.734-.69l-.084-.085c-.315-.318-.525-.53-.685-.74a4.05 4.05 0 0 1 0-4.896c.16-.21.37-.421.685-.74l.042-.042l2.83-2.856a.75.75 0 0 1 1.066 1.056l-2.83 2.856c-.373.376-.506.513-.599.634a2.55 2.55 0 0 0 0 3.08c.093.121.226.259.599.634c.372.375.508.51.628.603a2.47 2.47 0 0 0 3.033 0c.12-.093.256-.228.629-.603l3.672-3.705c1.464-1.478 2.066-2.098 2.388-2.736a4.75 4.75 0 0 0 0-4.28c-.322-.638-.924-1.258-2.388-2.735c-1.466-1.479-2.08-2.085-2.71-2.41a4.62 4.62 0 0 0-4.226 0c-.63.325-1.244.931-2.71 2.41l-3.73 3.763c-.822.83-1.162 1.177-1.388 1.505a4.75 4.75 0 0 0 0 5.39c.226.328.566.675 1.389 1.505a.75.75 0 1 1-1.066 1.056l-.065-.066c-.737-.744-1.18-1.191-1.493-1.643a6.25 6.25 0 0 1 0-7.095c.313-.451.756-.898 1.493-1.643l.065-.065l3.73-3.763l.117-.118C9.07 3.173 9.86 2.375 10.73 1.927" clip-rule="evenodd"/></svg>
React
import type { SVGProps } from "react";
export function ReiconPaperclip3(props: SVGProps<SVGSVGElement>) {
return (
<svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" fillRule="evenodd" d="M10.731 1.928a6.12 6.12 0 0 1 5.598 0c.87.447 1.66 1.245 2.972 2.569l.117.118l.116.116c1.313 1.325 2.103 2.122 2.546 2.999a6.25 6.25 0 0 1 0 5.632c-.443.877-1.233 1.674-2.546 2.999l-.116.116l-3.714 3.748c-.315.318-.525.53-.733.691a3.97 3.97 0 0 1-4.87 0c-.209-.161-.419-.373-.734-.69l-.084-.085c-.315-.318-.525-.53-.685-.74a4.05 4.05 0 0 1 0-4.896c.16-.21.37-.421.685-.74l.042-.042l2.83-2.856a.75.75 0 0 1 1.066 1.056l-2.83 2.856c-.373.376-.506.513-.599.634a2.55 2.55 0 0 0 0 3.08c.093.121.226.259.599.634c.372.375.508.51.628.603a2.47 2.47 0 0 0 3.033 0c.12-.093.256-.228.629-.603l3.672-3.705c1.464-1.478 2.066-2.098 2.388-2.736a4.75 4.75 0 0 0 0-4.28c-.322-.638-.924-1.258-2.388-2.735c-1.466-1.479-2.08-2.085-2.71-2.41a4.62 4.62 0 0 0-4.226 0c-.63.325-1.244.931-2.71 2.41l-3.73 3.763c-.822.83-1.162 1.177-1.388 1.505a4.75 4.75 0 0 0 0 5.39c.226.328.566.675 1.389 1.505a.75.75 0 1 1-1.066 1.056l-.065-.066c-.737-.744-1.18-1.191-1.493-1.643a6.25 6.25 0 0 1 0-7.095c.313-.451.756-.898 1.493-1.643l.065-.065l3.73-3.763l.117-.118C9.07 3.173 9.86 2.375 10.73 1.927" clipRule="evenodd"/></svg>
);
}
Vue
<template> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" fill-rule="evenodd" d="M10.731 1.928a6.12 6.12 0 0 1 5.598 0c.87.447 1.66 1.245 2.972 2.569l.117.118l.116.116c1.313 1.325 2.103 2.122 2.546 2.999a6.25 6.25 0 0 1 0 5.632c-.443.877-1.233 1.674-2.546 2.999l-.116.116l-3.714 3.748c-.315.318-.525.53-.733.691a3.97 3.97 0 0 1-4.87 0c-.209-.161-.419-.373-.734-.69l-.084-.085c-.315-.318-.525-.53-.685-.74a4.05 4.05 0 0 1 0-4.896c.16-.21.37-.421.685-.74l.042-.042l2.83-2.856a.75.75 0 0 1 1.066 1.056l-2.83 2.856c-.373.376-.506.513-.599.634a2.55 2.55 0 0 0 0 3.08c.093.121.226.259.599.634c.372.375.508.51.628.603a2.47 2.47 0 0 0 3.033 0c.12-.093.256-.228.629-.603l3.672-3.705c1.464-1.478 2.066-2.098 2.388-2.736a4.75 4.75 0 0 0 0-4.28c-.322-.638-.924-1.258-2.388-2.735c-1.466-1.479-2.08-2.085-2.71-2.41a4.62 4.62 0 0 0-4.226 0c-.63.325-1.244.931-2.71 2.41l-3.73 3.763c-.822.83-1.162 1.177-1.388 1.505a4.75 4.75 0 0 0 0 5.39c.226.328.566.675 1.389 1.505a.75.75 0 1 1-1.066 1.056l-.065-.066c-.737-.744-1.18-1.191-1.493-1.643a6.25 6.25 0 0 1 0-7.095c.313-.451.756-.898 1.493-1.643l.065-.065l3.73-3.763l.117-.118C9.07 3.173 9.86 2.375 10.73 1.927" clip-rule="evenodd"/></svg> </template>
CSS
.icon-paperclip3 {
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%3Cpath%20fill%3D%22currentColor%22%20fill-rule%3D%22evenodd%22%20d%3D%22M10.731%201.928a6.12%206.12%200%200%201%205.598%200c.87.447%201.66%201.245%202.972%202.569l.117.118l.116.116c1.313%201.325%202.103%202.122%202.546%202.999a6.25%206.25%200%200%201%200%205.632c-.443.877-1.233%201.674-2.546%202.999l-.116.116l-3.714%203.748c-.315.318-.525.53-.733.691a3.97%203.97%200%200%201-4.87%200c-.209-.161-.419-.373-.734-.69l-.084-.085c-.315-.318-.525-.53-.685-.74a4.05%204.05%200%200%201%200-4.896c.16-.21.37-.421.685-.74l.042-.042l2.83-2.856a.75.75%200%200%201%201.066%201.056l-2.83%202.856c-.373.376-.506.513-.599.634a2.55%202.55%200%200%200%200%203.08c.093.121.226.259.599.634c.372.375.508.51.628.603a2.47%202.47%200%200%200%203.033%200c.12-.093.256-.228.629-.603l3.672-3.705c1.464-1.478%202.066-2.098%202.388-2.736a4.75%204.75%200%200%200%200-4.28c-.322-.638-.924-1.258-2.388-2.735c-1.466-1.479-2.08-2.085-2.71-2.41a4.62%204.62%200%200%200-4.226%200c-.63.325-1.244.931-2.71%202.41l-3.73%203.763c-.822.83-1.162%201.177-1.388%201.505a4.75%204.75%200%200%200%200%205.39c.226.328.566.675%201.389%201.505a.75.75%200%201%201-1.066%201.056l-.065-.066c-.737-.744-1.18-1.191-1.493-1.643a6.25%206.25%200%200%201%200-7.095c.313-.451.756-.898%201.493-1.643l.065-.065l3.73-3.763l.117-.118C9.07%203.173%209.86%202.375%2010.73%201.927%22%20clip-rule%3D%22evenodd%22%2F%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%3Cpath%20fill%3D%22currentColor%22%20fill-rule%3D%22evenodd%22%20d%3D%22M10.731%201.928a6.12%206.12%200%200%201%205.598%200c.87.447%201.66%201.245%202.972%202.569l.117.118l.116.116c1.313%201.325%202.103%202.122%202.546%202.999a6.25%206.25%200%200%201%200%205.632c-.443.877-1.233%201.674-2.546%202.999l-.116.116l-3.714%203.748c-.315.318-.525.53-.733.691a3.97%203.97%200%200%201-4.87%200c-.209-.161-.419-.373-.734-.69l-.084-.085c-.315-.318-.525-.53-.685-.74a4.05%204.05%200%200%201%200-4.896c.16-.21.37-.421.685-.74l.042-.042l2.83-2.856a.75.75%200%200%201%201.066%201.056l-2.83%202.856c-.373.376-.506.513-.599.634a2.55%202.55%200%200%200%200%203.08c.093.121.226.259.599.634c.372.375.508.51.628.603a2.47%202.47%200%200%200%203.033%200c.12-.093.256-.228.629-.603l3.672-3.705c1.464-1.478%202.066-2.098%202.388-2.736a4.75%204.75%200%200%200%200-4.28c-.322-.638-.924-1.258-2.388-2.735c-1.466-1.479-2.08-2.085-2.71-2.41a4.62%204.62%200%200%200-4.226%200c-.63.325-1.244.931-2.71%202.41l-3.73%203.763c-.822.83-1.162%201.177-1.388%201.505a4.75%204.75%200%200%200%200%205.39c.226.328.566.675%201.389%201.505a.75.75%200%201%201-1.066%201.056l-.065-.066c-.737-.744-1.18-1.191-1.493-1.643a6.25%206.25%200%200%201%200-7.095c.313-.451.756-.898%201.493-1.643l.065-.065l3.73-3.763l.117-.118C9.07%203.173%209.86%202.375%2010.73%201.927%22%20clip-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/reicon/paperclip3.svg?color=%231a73e8&size=48