Cube Checkmark icon
The Cube 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 Cube 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 { CubeCheckmark24Regular, CubeCheckmark24Filled } from "@fluentui/react-icons";
export function Example() {
return <CubeCheckmark24Regular aria-label="Cube Checkmark" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_cube_checkmark_24_regular.svg" width="24" height="24" alt="Cube 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="M6.04873 7.98404C6.19566 7.59676 6.62872 7.40192 7.016 7.54885L12 9.43974L16.9839 7.54885C17.3712 7.40192 17.8043 7.59676 17.9512 7.98404C18.0981 8.37132 17.9033 8.80438 17.516 8.95131L12.75 10.7595V13.0629C12.0577 13.8037 11.5366 14.7067 11.25 15.7086V10.7595L6.48392 8.95131C6.09664 8.80438 5.9018 8.37132 6.04873 7.98404ZM20.5 7.1738V11.7322C21.051 12.0194 21.5557 12.3832 22 12.8096V7.1738C22 6.46118 21.5679 5.81973 20.9075 5.552L13.4089 2.51203C12.5053 2.14573 11.4947 2.14573 10.5911 2.51203L3.09252 5.552C2.43211 5.81974 2 6.46118 2 7.1738V16.8265C2 17.5391 2.43211 18.1806 3.09252 18.4483L10.5911 21.4883C11.2187 21.7427 11.898 21.8204 12.5572 21.7214C12.173 21.272 11.8491 20.7697 11.5979 20.2268C11.4472 20.1994 11.2987 20.1565 11.1547 20.0982L3.65607 17.0582C3.56173 17.0199 3.5 16.9283 3.5 16.8265V7.1738C3.5 7.07199 3.56173 6.98036 3.65607 6.94211L11.1547 3.90214C11.6968 3.68236 12.3032 3.68236 12.8453 3.90214L20.3439 6.94211C20.4383 6.98036 20.5 7.07199 20.5 7.1738ZM23 17.5C23 20.5376 20.5376 23 17.5 23C14.4624 23 12 20.5376 12 17.5C12 14.4624 14.4624 12 17.5 12C20.5376 12 23 14.4624 23 17.5ZM16.8536 19.8536L20.8536 15.8536C21.0488 15.6583 21.0488 15.3417 20.8536 15.1464C20.6583 14.9512 20.3417 14.9512 20.1464 15.1464L16.5 18.7929L14.8536 17.1464C14.6583 16.9512 14.3417 16.9512 14.1464 17.1464C13.9512 17.3417 13.9512 17.6583 14.1464 17.8536L16.1464 19.8536C16.3417 20.0488 16.6583 20.0488 16.8536 19.8536Z" 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/cube_checkmark_24_regular.svg";Details
| Name | Cube Checkmark |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_cube_checkmark_24_regular.svg |
| Filled file | ic_fluent_cube_checkmark_24_filled.svg |
| React components | CubeCheckmark24Regular, CubeCheckmark24Filled |
| License | MIT (© Microsoft Corporation) |