file done icon
file-done-outlined from Ant Design Icons by HeskeyBaozi · Outlined · MIT Free for personal and commercial use.
- Name
- file-done-outlined
- Set
- Ant Design Icons
- Style
- Outlined
- Viewbox
- 1024×1024
- License
- MIT
- Aliases
- file-done, file-done-outline
Related icons in Ant Design Icons
Use the file done icon
SVG
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 1024 1024"><path fill="currentColor" d="M688 312v-48c0-4.4-3.6-8-8-8H296c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h384c4.4 0 8-3.6 8-8m-392 88c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h184c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zm376 116c-119.3 0-216 96.7-216 216s96.7 216 216 216s216-96.7 216-216s-96.7-216-216-216m107.5 323.5C750.8 868.2 712.6 884 672 884s-78.8-15.8-107.5-44.5S520 772.6 520 732s15.8-78.8 44.5-107.5S631.4 580 672 580s78.8 15.8 107.5 44.5S824 691.4 824 732s-15.8 78.8-44.5 107.5M761 656h-44.3c-2.6 0-5 1.2-6.5 3.3l-63.5 87.8l-23.1-31.9a7.92 7.92 0 0 0-6.5-3.3H573c-6.5 0-10.3 7.4-6.5 12.7l73.8 102.1c3.2 4.4 9.7 4.4 12.9 0l114.2-158c3.9-5.3.1-12.7-6.4-12.7M440 852H208V148h560v344c0 4.4 3.6 8 8 8h56c4.4 0 8-3.6 8-8V108c0-17.7-14.3-32-32-32H168c-17.7 0-32 14.3-32 32v784c0 17.7 14.3 32 32 32h272c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8"/></svg>
React
import type { SVGProps } from "react";
export function AntDesignFileDoneOutlined(props: SVGProps<SVGSVGElement>) {
return (
<svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 1024 1024"><path fill="currentColor" d="M688 312v-48c0-4.4-3.6-8-8-8H296c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h384c4.4 0 8-3.6 8-8m-392 88c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h184c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zm376 116c-119.3 0-216 96.7-216 216s96.7 216 216 216s216-96.7 216-216s-96.7-216-216-216m107.5 323.5C750.8 868.2 712.6 884 672 884s-78.8-15.8-107.5-44.5S520 772.6 520 732s15.8-78.8 44.5-107.5S631.4 580 672 580s78.8 15.8 107.5 44.5S824 691.4 824 732s-15.8 78.8-44.5 107.5M761 656h-44.3c-2.6 0-5 1.2-6.5 3.3l-63.5 87.8l-23.1-31.9a7.92 7.92 0 0 0-6.5-3.3H573c-6.5 0-10.3 7.4-6.5 12.7l73.8 102.1c3.2 4.4 9.7 4.4 12.9 0l114.2-158c3.9-5.3.1-12.7-6.4-12.7M440 852H208V148h560v344c0 4.4 3.6 8 8 8h56c4.4 0 8-3.6 8-8V108c0-17.7-14.3-32-32-32H168c-17.7 0-32 14.3-32 32v784c0 17.7 14.3 32 32 32h272c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8"/></svg>
);
}
Vue
<template> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 1024 1024"><path fill="currentColor" d="M688 312v-48c0-4.4-3.6-8-8-8H296c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h384c4.4 0 8-3.6 8-8m-392 88c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h184c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zm376 116c-119.3 0-216 96.7-216 216s96.7 216 216 216s216-96.7 216-216s-96.7-216-216-216m107.5 323.5C750.8 868.2 712.6 884 672 884s-78.8-15.8-107.5-44.5S520 772.6 520 732s15.8-78.8 44.5-107.5S631.4 580 672 580s78.8 15.8 107.5 44.5S824 691.4 824 732s-15.8 78.8-44.5 107.5M761 656h-44.3c-2.6 0-5 1.2-6.5 3.3l-63.5 87.8l-23.1-31.9a7.92 7.92 0 0 0-6.5-3.3H573c-6.5 0-10.3 7.4-6.5 12.7l73.8 102.1c3.2 4.4 9.7 4.4 12.9 0l114.2-158c3.9-5.3.1-12.7-6.4-12.7M440 852H208V148h560v344c0 4.4 3.6 8 8 8h56c4.4 0 8-3.6 8-8V108c0-17.7-14.3-32-32-32H168c-17.7 0-32 14.3-32 32v784c0 17.7 14.3 32 32 32h272c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8"/></svg> </template>
CSS
.icon-file-done-outlined {
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%201024%201024%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M688%20312v-48c0-4.4-3.6-8-8-8H296c-4.4%200-8%203.6-8%208v48c0%204.4%203.6%208%208%208h384c4.4%200%208-3.6%208-8m-392%2088c-4.4%200-8%203.6-8%208v48c0%204.4%203.6%208%208%208h184c4.4%200%208-3.6%208-8v-48c0-4.4-3.6-8-8-8zm376%20116c-119.3%200-216%2096.7-216%20216s96.7%20216%20216%20216s216-96.7%20216-216s-96.7-216-216-216m107.5%20323.5C750.8%20868.2%20712.6%20884%20672%20884s-78.8-15.8-107.5-44.5S520%20772.6%20520%20732s15.8-78.8%2044.5-107.5S631.4%20580%20672%20580s78.8%2015.8%20107.5%2044.5S824%20691.4%20824%20732s-15.8%2078.8-44.5%20107.5M761%20656h-44.3c-2.6%200-5%201.2-6.5%203.3l-63.5%2087.8l-23.1-31.9a7.92%207.92%200%200%200-6.5-3.3H573c-6.5%200-10.3%207.4-6.5%2012.7l73.8%20102.1c3.2%204.4%209.7%204.4%2012.9%200l114.2-158c3.9-5.3.1-12.7-6.4-12.7M440%20852H208V148h560v344c0%204.4%203.6%208%208%208h56c4.4%200%208-3.6%208-8V108c0-17.7-14.3-32-32-32H168c-17.7%200-32%2014.3-32%2032v784c0%2017.7%2014.3%2032%2032%2032h272c4.4%200%208-3.6%208-8v-56c0-4.4-3.6-8-8-8%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%201024%201024%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M688%20312v-48c0-4.4-3.6-8-8-8H296c-4.4%200-8%203.6-8%208v48c0%204.4%203.6%208%208%208h384c4.4%200%208-3.6%208-8m-392%2088c-4.4%200-8%203.6-8%208v48c0%204.4%203.6%208%208%208h184c4.4%200%208-3.6%208-8v-48c0-4.4-3.6-8-8-8zm376%20116c-119.3%200-216%2096.7-216%20216s96.7%20216%20216%20216s216-96.7%20216-216s-96.7-216-216-216m107.5%20323.5C750.8%20868.2%20712.6%20884%20672%20884s-78.8-15.8-107.5-44.5S520%20772.6%20520%20732s15.8-78.8%2044.5-107.5S631.4%20580%20672%20580s78.8%2015.8%20107.5%2044.5S824%20691.4%20824%20732s-15.8%2078.8-44.5%20107.5M761%20656h-44.3c-2.6%200-5%201.2-6.5%203.3l-63.5%2087.8l-23.1-31.9a7.92%207.92%200%200%200-6.5-3.3H573c-6.5%200-10.3%207.4-6.5%2012.7l73.8%20102.1c3.2%204.4%209.7%204.4%2012.9%200l114.2-158c3.9-5.3.1-12.7-6.4-12.7M440%20852H208V148h560v344c0%204.4%203.6%208%208%208h56c4.4%200%208-3.6%208-8V108c0-17.7-14.3-32-32-32H168c-17.7%200-32%2014.3-32%2032v784c0%2017.7%2014.3%2032%2032%2032h272c4.4%200%208-3.6%208-8v-56c0-4.4-3.6-8-8-8%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/ant-design/file-done-outlined.svg?color=%231a73e8&size=48