TextBox Checkmark icon
Used to represent type layout within a container. The TextBox 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 TextBox 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 { TextboxCheckmark24Regular, TextboxCheckmark24Filled } from "@fluentui/react-icons";
export function Example() {
return <TextboxCheckmark24Regular aria-label="TextBox Checkmark" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_textbox_checkmark_24_regular.svg" width="24" height="24" alt="TextBox 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="M5.75 21H12.0218C11.7253 20.5368 11.4858 20.0335 11.3135 19.5H5.75C5.05964 19.5 4.5 18.9404 4.5 18.25V5.75C4.5 5.05964 5.05964 4.5 5.75 4.5H18.25C18.9404 4.5 19.5 5.05964 19.5 5.75V11.3135C20.0335 11.4858 20.5368 11.7253 21 12.0218V5.75C21 4.23122 19.7688 3 18.25 3H5.75C4.23122 3 3 4.23122 3 5.75V18.25C3 19.7688 4.23122 21 5.75 21ZM11.0764 16.5C11.1572 15.9768 11.3004 15.4742 11.4982 15H6.75C6.33579 15 6 15.3358 6 15.75C6 16.1297 6.28215 16.4435 6.64823 16.4932L6.75 16.5H11.0764ZM13.3464 12.5C13.8306 12.0973 14.3742 11.7637 14.9621 11.5141C14.8736 11.2465 14.6384 11.0457 14.3518 11.0068L14.25 11H6.75C6.33579 11 6 11.3358 6 11.75C6 12.1297 6.28215 12.4435 6.64823 12.4932L6.75 12.5H13.3464ZM6.75 8.5H17.25C17.6642 8.5 18 8.16421 18 7.75C18 7.3703 17.7178 7.05651 17.3518 7.00685L17.25 7H6.75C6.33579 7 6 7.33579 6 7.75C6 8.1297 6.28215 8.44349 6.64823 8.49315L6.75 8.5ZM23 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.5ZM20.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.8536L20.8536 15.8536C21.0488 15.6583 21.0488 15.3417 20.8536 15.1464Z" 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/textbox_checkmark_24_regular.svg";Details
| Name | TextBox Checkmark |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_textbox_checkmark_24_regular.svg |
| Filled file | ic_fluent_textbox_checkmark_24_filled.svg |
| React components | TextboxCheckmark24Regular, TextboxCheckmark24Filled |
| License | MIT (© Microsoft Corporation) |