Box Checkmark icon
Used for shipping, production scenarios. The Box Checkmark icon is part of Microsoft's Fluent UI System Icons, available here in filled and regular (outlined) styles on a 24 px grid. Download it as SVG or PNG, or copy it as code — it's free to use under the MIT License.
Use the Box Checkmark icon in React
Install Microsoft's @fluentui/react-icons package, then import the component. Icons inherit the current text color, and you can size them with CSS.
npm install @fluentui/react-icons
import { BoxCheckmark24Regular, BoxCheckmark24Filled } from "@fluentui/react-icons";
export function Example() {
return <BoxCheckmark24Regular aria-label="Box Checkmark" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_box_checkmark_24_regular.svg" width="24" height="24" alt="Box Checkmark"> Or paste the SVG markup inline. Setting fill="currentColor" makes the icon follow the text color of its parent:
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10.5911 2.51301C11.4947 2.14671 12.5053 2.14671 13.4089 2.51301L20.9075 5.55298C21.5679 5.82071 22 6.46216 22 7.17477V12.8105C21.5557 12.3842 21.051 12.0204 20.5 11.7332V7.77316L12.7503 10.7654V13.0635C12.0581 13.8041 11.5371 14.7067 11.2503 15.7083V10.7641L3.5 7.75003V16.8275C3.5 16.9293 3.56173 17.0209 3.65607 17.0592L11.1547 20.0991C11.1863 20.112 11.2183 20.1241 11.2503 20.1354V20.1342L11.439 20.2109C11.4976 20.2348 11.5575 20.2548 11.618 20.2709C11.8663 20.7973 12.1832 21.2849 12.5572 21.7224C11.898 21.8214 11.2187 21.7437 10.5911 21.4892L3.09252 18.4493C2.43211 18.1815 2 17.5401 2 16.8275V7.17477C2 6.46216 2.43211 5.82071 3.09252 5.55298L10.5911 2.51301ZM12.8453 3.90312C12.3032 3.68334 11.6968 3.68334 11.1547 3.90312L9.24127 4.67882L16.7684 7.60604L19.4373 6.57554L12.8453 3.90312ZM4.58998 6.56448L12.0013 9.44667L14.6917 8.40787L7.21503 5.50027L4.58998 6.56448ZM17.5 23.001C20.5376 23.001 23 20.5385 23 17.501C23 14.4634 20.5376 12.001 17.5 12.001C14.4624 12.001 12 14.4634 12 17.501C12 20.5385 14.4624 23.001 17.5 23.001ZM16.5 18.7939L20.1464 15.1474C20.3417 14.9522 20.6583 14.9522 20.8536 15.1474C21.0488 15.3427 21.0488 15.6593 20.8536 15.8545L16.8536 19.8545C16.6583 20.0498 16.3417 20.0498 16.1464 19.8545L14.1464 17.8545C13.9512 17.6593 13.9512 17.3427 14.1464 17.1474C14.3417 16.9522 14.6583 16.9522 14.8536 17.1474L16.5 18.7939Z" fill="currentColor"/></svg>Use it from the SVG package
Microsoft's @fluentui/svg-icons package contains the raw SVG files, which works well with bundlers that import SVGs:
npm install @fluentui/svg-icons
import icon from "@fluentui/svg-icons/icons/box_checkmark_24_regular.svg";Details
| Name | Box Checkmark |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_box_checkmark_24_regular.svg |
| Filled file | ic_fluent_box_checkmark_24_filled.svg |
| React components | BoxCheckmark24Regular, BoxCheckmark24Filled |
| License | MIT (© Microsoft Corporation) |