Task List Add icon
Used to represent a checklist, goals in task oriented scenarios. The Task List Add 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 Task List Add 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 { TaskListAdd24Regular, TaskListAdd24Filled } from "@fluentui/react-icons";
export function Example() {
return <TaskListAdd24Regular aria-label="Task List Add" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_task_list_add_24_regular.svg" width="24" height="24" alt="Task List Add"> 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.78033 3.78033C7.07322 3.48744 7.07322 3.01256 6.78033 2.71967C6.48744 2.42678 6.01256 2.42678 5.71967 2.71967L3.75 4.68934L3.28033 4.21967C2.98744 3.92678 2.51256 3.92678 2.21967 4.21967C1.92678 4.51256 1.92678 4.98744 2.21967 5.28033L3.21967 6.28033C3.51256 6.57322 3.98744 6.57322 4.28033 6.28033L6.78033 3.78033ZM11 17.5C11 17.8424 11.0265 18.1787 11.0775 18.5068H9.75C9.33579 18.5068 9 18.1711 9 17.7568C9 17.3772 9.28215 17.0634 9.64823 17.0137L9.75 17.0068H11.0184C11.0062 17.1696 11 17.3341 11 17.5ZM17.5 11C18.7741 11 19.9626 11.3666 20.9657 12H21.25L21.3518 11.9932C21.7178 11.9435 22 11.6297 22 11.25C22 10.8358 21.6642 10.5 21.25 10.5H9.75L9.64823 10.5068C9.28215 10.5565 9 10.8703 9 11.25C9 11.6642 9.33579 12 9.75 12H14.0343C15.0374 11.3666 16.2259 11 17.5 11ZM21.25 4H9.75L9.64823 4.00685C9.28215 4.05651 9 4.3703 9 4.75C9 5.16421 9.33579 5.5 9.75 5.5H21.25L21.3518 5.49315C21.7178 5.44349 22 5.1297 22 4.75C22 4.33579 21.6642 4 21.25 4ZM6.78033 16.7803C7.07322 16.4874 7.07322 16.0126 6.78033 15.7197C6.48744 15.4268 6.01256 15.4268 5.71967 15.7197L3.75 17.6893L3.28033 17.2197C2.98744 16.9268 2.51256 16.9268 2.21967 17.2197C1.92678 17.5126 1.92678 17.9874 2.21967 18.2803L3.21967 19.2803C3.51256 19.5732 3.98744 19.5732 4.28033 19.2803L6.78033 16.7803ZM6.78033 9.21967C7.07322 9.51256 7.07322 9.98744 6.78033 10.2803L4.28033 12.7803C3.98744 13.0732 3.51256 13.0732 3.21967 12.7803L2.21967 11.7803C1.92678 11.4874 1.92678 11.0126 2.21967 10.7197C2.51256 10.4268 2.98744 10.4268 3.28033 10.7197L3.75 11.1893L5.71967 9.21967C6.01256 8.92678 6.48744 8.92678 6.78033 9.21967ZM23 17.5C23 14.4624 20.5376 12 17.5 12C14.4624 12 12 14.4624 12 17.5C12 20.5376 14.4624 23 17.5 23C20.5376 23 23 20.5376 23 17.5ZM18.0006 18L18.0011 20.5035C18.0011 20.7797 17.7773 21.0035 17.5011 21.0035C17.225 21.0035 17.0011 20.7797 17.0011 20.5035L17.0006 18H14.4956C14.2197 18 13.9961 17.7762 13.9961 17.5C13.9961 17.2239 14.2197 17 14.4956 17H17.0005L17 14.4993C17 14.2231 17.2239 13.9993 17.5 13.9993C17.7761 13.9993 18 14.2231 18 14.4993L18.0005 17H20.4966C20.7725 17 20.9961 17.2239 20.9961 17.5C20.9961 17.7762 20.7725 18 20.4966 18H18.0006Z" 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/task_list_add_24_regular.svg";Details
| Name | Task List Add |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_task_list_add_24_regular.svg |
| Filled file | ic_fluent_task_list_add_24_filled.svg |
| React components | TaskListAdd24Regular, TaskListAdd24Filled |
| License | MIT (© Microsoft Corporation) |