patch icon
patch-24-regular from Fluent UI System Icons by Microsoft Corporation · 24 Regular · MIT Free for personal and commercial use.
- Name
- patch-24-regular
- Set
- Fluent UI System Icons
- Style
- 24 Regular
- Viewbox
- 24×24
- License
- MIT
3 other variants in Fluent UI System Icons
Use the patch icon
SVG
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M12 12.75a.75.75 0 1 0 0-1.5a.75.75 0 0 0 0 1.5M10.25 12a.75.75 0 1 1-1.5 0a.75.75 0 0 1 1.5 0m4.25.75a.75.75 0 1 0 0-1.5a.75.75 0 0 0 0 1.5m-1.75 1.75a.75.75 0 1 1-1.5 0a.75.75 0 0 1 1.5 0M12 10.25a.75.75 0 1 0 0-1.5a.75.75 0 0 0 0 1.5m-8.763 8.048a3.25 3.25 0 0 1 0-4.596L13.702 3.236a3.25 3.25 0 0 1 4.596 0l2.464 2.465a3.25 3.25 0 0 1 0 4.596L10.298 20.762a3.25 3.25 0 0 1-4.596 0zm1.061-3.536a1.75 1.75 0 0 0 0 2.475l2.464 2.465a1.75 1.75 0 0 0 2.475 0L10.94 18L6 13.06zM16.939 12l-4.94-4.94L7.06 12L12 16.94zm1.06-1.06l1.703-1.703a1.75 1.75 0 0 0 0-2.475l-2.465-2.464a1.75 1.75 0 0 0-2.475 0L13.06 6zm-7.767-5.647l-.995-.995a1.75 1.75 0 0 0-2.475 0L4.298 6.762a1.75 1.75 0 0 0 0 2.475l.995.995l-1.061 1.06l-.995-.994a3.25 3.25 0 0 1 0-4.596l2.465-2.465a3.25 3.25 0 0 1 4.596 0l.995.995zm2.475 14.475l.994.994a3.25 3.25 0 0 0 4.597 0l2.464-2.464a3.25 3.25 0 0 0 0-4.596l-.995-.995l-1.06 1.06l.994.995a1.75 1.75 0 0 1 0 2.475l-2.464 2.465a1.75 1.75 0 0 1-2.475 0l-.995-.995z"/></svg>
React
import type { SVGProps } from "react";
export function FluentPatch24Regular(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" d="M12 12.75a.75.75 0 1 0 0-1.5a.75.75 0 0 0 0 1.5M10.25 12a.75.75 0 1 1-1.5 0a.75.75 0 0 1 1.5 0m4.25.75a.75.75 0 1 0 0-1.5a.75.75 0 0 0 0 1.5m-1.75 1.75a.75.75 0 1 1-1.5 0a.75.75 0 0 1 1.5 0M12 10.25a.75.75 0 1 0 0-1.5a.75.75 0 0 0 0 1.5m-8.763 8.048a3.25 3.25 0 0 1 0-4.596L13.702 3.236a3.25 3.25 0 0 1 4.596 0l2.464 2.465a3.25 3.25 0 0 1 0 4.596L10.298 20.762a3.25 3.25 0 0 1-4.596 0zm1.061-3.536a1.75 1.75 0 0 0 0 2.475l2.464 2.465a1.75 1.75 0 0 0 2.475 0L10.94 18L6 13.06zM16.939 12l-4.94-4.94L7.06 12L12 16.94zm1.06-1.06l1.703-1.703a1.75 1.75 0 0 0 0-2.475l-2.465-2.464a1.75 1.75 0 0 0-2.475 0L13.06 6zm-7.767-5.647l-.995-.995a1.75 1.75 0 0 0-2.475 0L4.298 6.762a1.75 1.75 0 0 0 0 2.475l.995.995l-1.061 1.06l-.995-.994a3.25 3.25 0 0 1 0-4.596l2.465-2.465a3.25 3.25 0 0 1 4.596 0l.995.995zm2.475 14.475l.994.994a3.25 3.25 0 0 0 4.597 0l2.464-2.464a3.25 3.25 0 0 0 0-4.596l-.995-.995l-1.06 1.06l.994.995a1.75 1.75 0 0 1 0 2.475l-2.464 2.465a1.75 1.75 0 0 1-2.475 0l-.995-.995z"/></svg>
);
}
Vue
<template> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M12 12.75a.75.75 0 1 0 0-1.5a.75.75 0 0 0 0 1.5M10.25 12a.75.75 0 1 1-1.5 0a.75.75 0 0 1 1.5 0m4.25.75a.75.75 0 1 0 0-1.5a.75.75 0 0 0 0 1.5m-1.75 1.75a.75.75 0 1 1-1.5 0a.75.75 0 0 1 1.5 0M12 10.25a.75.75 0 1 0 0-1.5a.75.75 0 0 0 0 1.5m-8.763 8.048a3.25 3.25 0 0 1 0-4.596L13.702 3.236a3.25 3.25 0 0 1 4.596 0l2.464 2.465a3.25 3.25 0 0 1 0 4.596L10.298 20.762a3.25 3.25 0 0 1-4.596 0zm1.061-3.536a1.75 1.75 0 0 0 0 2.475l2.464 2.465a1.75 1.75 0 0 0 2.475 0L10.94 18L6 13.06zM16.939 12l-4.94-4.94L7.06 12L12 16.94zm1.06-1.06l1.703-1.703a1.75 1.75 0 0 0 0-2.475l-2.465-2.464a1.75 1.75 0 0 0-2.475 0L13.06 6zm-7.767-5.647l-.995-.995a1.75 1.75 0 0 0-2.475 0L4.298 6.762a1.75 1.75 0 0 0 0 2.475l.995.995l-1.061 1.06l-.995-.994a3.25 3.25 0 0 1 0-4.596l2.465-2.465a3.25 3.25 0 0 1 4.596 0l.995.995zm2.475 14.475l.994.994a3.25 3.25 0 0 0 4.597 0l2.464-2.464a3.25 3.25 0 0 0 0-4.596l-.995-.995l-1.06 1.06l.994.995a1.75 1.75 0 0 1 0 2.475l-2.464 2.465a1.75 1.75 0 0 1-2.475 0l-.995-.995z"/></svg> </template>
CSS
.icon-patch-24-regular {
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%20d%3D%22M12%2012.75a.75.75%200%201%200%200-1.5a.75.75%200%200%200%200%201.5M10.25%2012a.75.75%200%201%201-1.5%200a.75.75%200%200%201%201.5%200m4.25.75a.75.75%200%201%200%200-1.5a.75.75%200%200%200%200%201.5m-1.75%201.75a.75.75%200%201%201-1.5%200a.75.75%200%200%201%201.5%200M12%2010.25a.75.75%200%201%200%200-1.5a.75.75%200%200%200%200%201.5m-8.763%208.048a3.25%203.25%200%200%201%200-4.596L13.702%203.236a3.25%203.25%200%200%201%204.596%200l2.464%202.465a3.25%203.25%200%200%201%200%204.596L10.298%2020.762a3.25%203.25%200%200%201-4.596%200zm1.061-3.536a1.75%201.75%200%200%200%200%202.475l2.464%202.465a1.75%201.75%200%200%200%202.475%200L10.94%2018L6%2013.06zM16.939%2012l-4.94-4.94L7.06%2012L12%2016.94zm1.06-1.06l1.703-1.703a1.75%201.75%200%200%200%200-2.475l-2.465-2.464a1.75%201.75%200%200%200-2.475%200L13.06%206zm-7.767-5.647l-.995-.995a1.75%201.75%200%200%200-2.475%200L4.298%206.762a1.75%201.75%200%200%200%200%202.475l.995.995l-1.061%201.06l-.995-.994a3.25%203.25%200%200%201%200-4.596l2.465-2.465a3.25%203.25%200%200%201%204.596%200l.995.995zm2.475%2014.475l.994.994a3.25%203.25%200%200%200%204.597%200l2.464-2.464a3.25%203.25%200%200%200%200-4.596l-.995-.995l-1.06%201.06l.994.995a1.75%201.75%200%200%201%200%202.475l-2.464%202.465a1.75%201.75%200%200%201-2.475%200l-.995-.995z%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%20d%3D%22M12%2012.75a.75.75%200%201%200%200-1.5a.75.75%200%200%200%200%201.5M10.25%2012a.75.75%200%201%201-1.5%200a.75.75%200%200%201%201.5%200m4.25.75a.75.75%200%201%200%200-1.5a.75.75%200%200%200%200%201.5m-1.75%201.75a.75.75%200%201%201-1.5%200a.75.75%200%200%201%201.5%200M12%2010.25a.75.75%200%201%200%200-1.5a.75.75%200%200%200%200%201.5m-8.763%208.048a3.25%203.25%200%200%201%200-4.596L13.702%203.236a3.25%203.25%200%200%201%204.596%200l2.464%202.465a3.25%203.25%200%200%201%200%204.596L10.298%2020.762a3.25%203.25%200%200%201-4.596%200zm1.061-3.536a1.75%201.75%200%200%200%200%202.475l2.464%202.465a1.75%201.75%200%200%200%202.475%200L10.94%2018L6%2013.06zM16.939%2012l-4.94-4.94L7.06%2012L12%2016.94zm1.06-1.06l1.703-1.703a1.75%201.75%200%200%200%200-2.475l-2.465-2.464a1.75%201.75%200%200%200-2.475%200L13.06%206zm-7.767-5.647l-.995-.995a1.75%201.75%200%200%200-2.475%200L4.298%206.762a1.75%201.75%200%200%200%200%202.475l.995.995l-1.061%201.06l-.995-.994a3.25%203.25%200%200%201%200-4.596l2.465-2.465a3.25%203.25%200%200%201%204.596%200l.995.995zm2.475%2014.475l.994.994a3.25%203.25%200%200%200%204.597%200l2.464-2.464a3.25%203.25%200%200%200%200-4.596l-.995-.995l-1.06%201.06l.994.995a1.75%201.75%200%200%201%200%202.475l-2.464%202.465a1.75%201.75%200%200%201-2.475%200l-.995-.995z%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/fluent/patch-24-regular.svg?color=%231a73e8&size=48