pen from Bootstrap Icons by The Bootstrap Authors · Outline · MIT Free for personal and commercial use.

Name
pen
Set
Bootstrap Icons
Style
Outline
Viewbox
16×16
License
MIT

1 other variant in Bootstrap Icons

The same icon in other sets

Use the pen icon

SVG

<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16"><path fill="currentColor" d="m13.498.795l.149-.149a1.207 1.207 0 1 1 1.707 1.708l-.149.148a1.5 1.5 0 0 1-.059 2.059L4.854 14.854a.5.5 0 0 1-.233.131l-4 1a.5.5 0 0 1-.606-.606l1-4a.5.5 0 0 1 .131-.232l9.642-9.642a.5.5 0 0 0-.642.056L6.854 4.854a.5.5 0 1 1-.708-.708L9.44.854A1.5 1.5 0 0 1 11.5.796a1.5 1.5 0 0 1 1.998-.001m-.644.766a.5.5 0 0 0-.707 0L1.95 11.756l-.764 3.057l3.057-.764L14.44 3.854a.5.5 0 0 0 0-.708z"/></svg>

React

import type { SVGProps } from "react";

export function BiPen(props: SVGProps<SVGSVGElement>) {
  return (
    <svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16"><path fill="currentColor" d="m13.498.795l.149-.149a1.207 1.207 0 1 1 1.707 1.708l-.149.148a1.5 1.5 0 0 1-.059 2.059L4.854 14.854a.5.5 0 0 1-.233.131l-4 1a.5.5 0 0 1-.606-.606l1-4a.5.5 0 0 1 .131-.232l9.642-9.642a.5.5 0 0 0-.642.056L6.854 4.854a.5.5 0 1 1-.708-.708L9.44.854A1.5 1.5 0 0 1 11.5.796a1.5 1.5 0 0 1 1.998-.001m-.644.766a.5.5 0 0 0-.707 0L1.95 11.756l-.764 3.057l3.057-.764L14.44 3.854a.5.5 0 0 0 0-.708z"/></svg>
  );
}

Vue

<template>
  <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16"><path fill="currentColor" d="m13.498.795l.149-.149a1.207 1.207 0 1 1 1.707 1.708l-.149.148a1.5 1.5 0 0 1-.059 2.059L4.854 14.854a.5.5 0 0 1-.233.131l-4 1a.5.5 0 0 1-.606-.606l1-4a.5.5 0 0 1 .131-.232l9.642-9.642a.5.5 0 0 0-.642.056L6.854 4.854a.5.5 0 1 1-.708-.708L9.44.854A1.5 1.5 0 0 1 11.5.796a1.5 1.5 0 0 1 1.998-.001m-.644.766a.5.5 0 0 0-.707 0L1.95 11.756l-.764 3.057l3.057-.764L14.44 3.854a.5.5 0 0 0 0-.708z"/></svg>
</template>

CSS

.icon-pen {
  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%2016%2016%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22m13.498.795l.149-.149a1.207%201.207%200%201%201%201.707%201.708l-.149.148a1.5%201.5%200%200%201-.059%202.059L4.854%2014.854a.5.5%200%200%201-.233.131l-4%201a.5.5%200%200%201-.606-.606l1-4a.5.5%200%200%201%20.131-.232l9.642-9.642a.5.5%200%200%200-.642.056L6.854%204.854a.5.5%200%201%201-.708-.708L9.44.854A1.5%201.5%200%200%201%2011.5.796a1.5%201.5%200%200%201%201.998-.001m-.644.766a.5.5%200%200%200-.707%200L1.95%2011.756l-.764%203.057l3.057-.764L14.44%203.854a.5.5%200%200%200%200-.708z%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%2016%2016%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22m13.498.795l.149-.149a1.207%201.207%200%201%201%201.707%201.708l-.149.148a1.5%201.5%200%200%201-.059%202.059L4.854%2014.854a.5.5%200%200%201-.233.131l-4%201a.5.5%200%200%201-.606-.606l1-4a.5.5%200%200%201%20.131-.232l9.642-9.642a.5.5%200%200%200-.642.056L6.854%204.854a.5.5%200%201%201-.708-.708L9.44.854A1.5%201.5%200%200%201%2011.5.796a1.5%201.5%200%200%201%201.998-.001m-.644.766a.5.5%200%200%200-.707%200L1.95%2011.756l-.764%203.057l3.057-.764L14.44%203.854a.5.5%200%200%200%200-.708z%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}

Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/bi/pen.svg?color=%231a73e8&size=48