add starburst icon
add-starburst-24-regular from Fluent UI System Icons by Microsoft Corporation · 24 Regular · MIT Free for personal and commercial use.
- Name
- add-starburst-24-regular
- Set
- Fluent UI System Icons
- Style
- 24 Regular
- Viewbox
- 24×24
- License
- MIT
11 other variants in Fluent UI System Icons
The same icon in other sets
Related icons in Fluent UI System Icons
Use the add starburst icon
SVG
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M12.75 7.75a.75.75 0 0 0-1.5 0v3.5h-3.5a.75.75 0 0 0 0 1.5h3.5v3.5a.75.75 0 0 0 1.5 0v-3.5h3.5a.75.75 0 0 0 0-1.5h-3.5zm.042-6.367a1 1 0 0 0-1.579 0L9.8 3.2a.25.25 0 0 1-.291.079L7.377 2.41a1 1 0 0 0-1.367.79l-.315 2.28a.25.25 0 0 1-.213.213l-2.28.315a1 1 0 0 0-.79 1.367l.868 2.132a.25.25 0 0 1-.079.291l-1.816 1.413a1 1 0 0 0 0 1.579l1.816 1.413a.25.25 0 0 1 .079.291l-.867 2.132a1 1 0 0 0 .79 1.367l2.279.315a.25.25 0 0 1 .213.213l.315 2.28a1 1 0 0 0 1.367.79l2.132-.868a.25.25 0 0 1 .291.079l1.413 1.816a1 1 0 0 0 1.579 0l1.412-1.816a.25.25 0 0 1 .292-.079l2.132.867a1 1 0 0 0 1.367-.79l.315-2.279a.25.25 0 0 1 .213-.213l2.28-.315a1 1 0 0 0 .789-1.367l-.867-2.132a.25.25 0 0 1 .078-.291l1.817-1.413a1 1 0 0 0 0-1.579l-1.817-1.413a.25.25 0 0 1-.078-.291l.867-2.132a1 1 0 0 0-.79-1.367l-2.279-.315a.25.25 0 0 1-.213-.213l-.315-2.28a1 1 0 0 0-1.367-.79l-2.132.868a.25.25 0 0 1-.292-.079zM10.985 4.12l1.018-1.309l1.017 1.31a1.75 1.75 0 0 0 2.04.546l1.537-.624l.227 1.642a1.75 1.75 0 0 0 1.494 1.494l1.642.227l-.624 1.536a1.75 1.75 0 0 0 .547 2.04l1.309 1.019l-1.31 1.018a1.75 1.75 0 0 0-.546 2.04l.624 1.536l-1.642.227a1.75 1.75 0 0 0-1.494 1.494l-.227 1.642l-1.536-.624a1.75 1.75 0 0 0-2.04.547l-1.019 1.308l-1.018-1.308a1.75 1.75 0 0 0-2.04-.547l-1.536.624l-.227-1.642a1.75 1.75 0 0 0-1.494-1.494l-1.642-.227l.624-1.536a1.75 1.75 0 0 0-.547-2.04L2.813 12l1.31-1.018a1.75 1.75 0 0 0 .546-2.041l-.624-1.536l1.642-.227a1.75 1.75 0 0 0 1.494-1.494l.227-1.642l1.536.624a1.75 1.75 0 0 0 2.04-.547"/></svg>
React
import type { SVGProps } from "react";
export function FluentAddStarburst24Regular(props: SVGProps<SVGSVGElement>) {
return (
<svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M12.75 7.75a.75.75 0 0 0-1.5 0v3.5h-3.5a.75.75 0 0 0 0 1.5h3.5v3.5a.75.75 0 0 0 1.5 0v-3.5h3.5a.75.75 0 0 0 0-1.5h-3.5zm.042-6.367a1 1 0 0 0-1.579 0L9.8 3.2a.25.25 0 0 1-.291.079L7.377 2.41a1 1 0 0 0-1.367.79l-.315 2.28a.25.25 0 0 1-.213.213l-2.28.315a1 1 0 0 0-.79 1.367l.868 2.132a.25.25 0 0 1-.079.291l-1.816 1.413a1 1 0 0 0 0 1.579l1.816 1.413a.25.25 0 0 1 .079.291l-.867 2.132a1 1 0 0 0 .79 1.367l2.279.315a.25.25 0 0 1 .213.213l.315 2.28a1 1 0 0 0 1.367.79l2.132-.868a.25.25 0 0 1 .291.079l1.413 1.816a1 1 0 0 0 1.579 0l1.412-1.816a.25.25 0 0 1 .292-.079l2.132.867a1 1 0 0 0 1.367-.79l.315-2.279a.25.25 0 0 1 .213-.213l2.28-.315a1 1 0 0 0 .789-1.367l-.867-2.132a.25.25 0 0 1 .078-.291l1.817-1.413a1 1 0 0 0 0-1.579l-1.817-1.413a.25.25 0 0 1-.078-.291l.867-2.132a1 1 0 0 0-.79-1.367l-2.279-.315a.25.25 0 0 1-.213-.213l-.315-2.28a1 1 0 0 0-1.367-.79l-2.132.868a.25.25 0 0 1-.292-.079zM10.985 4.12l1.018-1.309l1.017 1.31a1.75 1.75 0 0 0 2.04.546l1.537-.624l.227 1.642a1.75 1.75 0 0 0 1.494 1.494l1.642.227l-.624 1.536a1.75 1.75 0 0 0 .547 2.04l1.309 1.019l-1.31 1.018a1.75 1.75 0 0 0-.546 2.04l.624 1.536l-1.642.227a1.75 1.75 0 0 0-1.494 1.494l-.227 1.642l-1.536-.624a1.75 1.75 0 0 0-2.04.547l-1.019 1.308l-1.018-1.308a1.75 1.75 0 0 0-2.04-.547l-1.536.624l-.227-1.642a1.75 1.75 0 0 0-1.494-1.494l-1.642-.227l.624-1.536a1.75 1.75 0 0 0-.547-2.04L2.813 12l1.31-1.018a1.75 1.75 0 0 0 .546-2.041l-.624-1.536l1.642-.227a1.75 1.75 0 0 0 1.494-1.494l.227-1.642l1.536.624a1.75 1.75 0 0 0 2.04-.547"/></svg>
);
}
Vue
<template> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M12.75 7.75a.75.75 0 0 0-1.5 0v3.5h-3.5a.75.75 0 0 0 0 1.5h3.5v3.5a.75.75 0 0 0 1.5 0v-3.5h3.5a.75.75 0 0 0 0-1.5h-3.5zm.042-6.367a1 1 0 0 0-1.579 0L9.8 3.2a.25.25 0 0 1-.291.079L7.377 2.41a1 1 0 0 0-1.367.79l-.315 2.28a.25.25 0 0 1-.213.213l-2.28.315a1 1 0 0 0-.79 1.367l.868 2.132a.25.25 0 0 1-.079.291l-1.816 1.413a1 1 0 0 0 0 1.579l1.816 1.413a.25.25 0 0 1 .079.291l-.867 2.132a1 1 0 0 0 .79 1.367l2.279.315a.25.25 0 0 1 .213.213l.315 2.28a1 1 0 0 0 1.367.79l2.132-.868a.25.25 0 0 1 .291.079l1.413 1.816a1 1 0 0 0 1.579 0l1.412-1.816a.25.25 0 0 1 .292-.079l2.132.867a1 1 0 0 0 1.367-.79l.315-2.279a.25.25 0 0 1 .213-.213l2.28-.315a1 1 0 0 0 .789-1.367l-.867-2.132a.25.25 0 0 1 .078-.291l1.817-1.413a1 1 0 0 0 0-1.579l-1.817-1.413a.25.25 0 0 1-.078-.291l.867-2.132a1 1 0 0 0-.79-1.367l-2.279-.315a.25.25 0 0 1-.213-.213l-.315-2.28a1 1 0 0 0-1.367-.79l-2.132.868a.25.25 0 0 1-.292-.079zM10.985 4.12l1.018-1.309l1.017 1.31a1.75 1.75 0 0 0 2.04.546l1.537-.624l.227 1.642a1.75 1.75 0 0 0 1.494 1.494l1.642.227l-.624 1.536a1.75 1.75 0 0 0 .547 2.04l1.309 1.019l-1.31 1.018a1.75 1.75 0 0 0-.546 2.04l.624 1.536l-1.642.227a1.75 1.75 0 0 0-1.494 1.494l-.227 1.642l-1.536-.624a1.75 1.75 0 0 0-2.04.547l-1.019 1.308l-1.018-1.308a1.75 1.75 0 0 0-2.04-.547l-1.536.624l-.227-1.642a1.75 1.75 0 0 0-1.494-1.494l-1.642-.227l.624-1.536a1.75 1.75 0 0 0-.547-2.04L2.813 12l1.31-1.018a1.75 1.75 0 0 0 .546-2.041l-.624-1.536l1.642-.227a1.75 1.75 0 0 0 1.494-1.494l.227-1.642l1.536.624a1.75 1.75 0 0 0 2.04-.547"/></svg> </template>
CSS
.icon-add-starburst-24-regular {
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%2024%2024%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M12.75%207.75a.75.75%200%200%200-1.5%200v3.5h-3.5a.75.75%200%200%200%200%201.5h3.5v3.5a.75.75%200%200%200%201.5%200v-3.5h3.5a.75.75%200%200%200%200-1.5h-3.5zm.042-6.367a1%201%200%200%200-1.579%200L9.8%203.2a.25.25%200%200%201-.291.079L7.377%202.41a1%201%200%200%200-1.367.79l-.315%202.28a.25.25%200%200%201-.213.213l-2.28.315a1%201%200%200%200-.79%201.367l.868%202.132a.25.25%200%200%201-.079.291l-1.816%201.413a1%201%200%200%200%200%201.579l1.816%201.413a.25.25%200%200%201%20.079.291l-.867%202.132a1%201%200%200%200%20.79%201.367l2.279.315a.25.25%200%200%201%20.213.213l.315%202.28a1%201%200%200%200%201.367.79l2.132-.868a.25.25%200%200%201%20.291.079l1.413%201.816a1%201%200%200%200%201.579%200l1.412-1.816a.25.25%200%200%201%20.292-.079l2.132.867a1%201%200%200%200%201.367-.79l.315-2.279a.25.25%200%200%201%20.213-.213l2.28-.315a1%201%200%200%200%20.789-1.367l-.867-2.132a.25.25%200%200%201%20.078-.291l1.817-1.413a1%201%200%200%200%200-1.579l-1.817-1.413a.25.25%200%200%201-.078-.291l.867-2.132a1%201%200%200%200-.79-1.367l-2.279-.315a.25.25%200%200%201-.213-.213l-.315-2.28a1%201%200%200%200-1.367-.79l-2.132.868a.25.25%200%200%201-.292-.079zM10.985%204.12l1.018-1.309l1.017%201.31a1.75%201.75%200%200%200%202.04.546l1.537-.624l.227%201.642a1.75%201.75%200%200%200%201.494%201.494l1.642.227l-.624%201.536a1.75%201.75%200%200%200%20.547%202.04l1.309%201.019l-1.31%201.018a1.75%201.75%200%200%200-.546%202.04l.624%201.536l-1.642.227a1.75%201.75%200%200%200-1.494%201.494l-.227%201.642l-1.536-.624a1.75%201.75%200%200%200-2.04.547l-1.019%201.308l-1.018-1.308a1.75%201.75%200%200%200-2.04-.547l-1.536.624l-.227-1.642a1.75%201.75%200%200%200-1.494-1.494l-1.642-.227l.624-1.536a1.75%201.75%200%200%200-.547-2.04L2.813%2012l1.31-1.018a1.75%201.75%200%200%200%20.546-2.041l-.624-1.536l1.642-.227a1.75%201.75%200%200%200%201.494-1.494l.227-1.642l1.536.624a1.75%201.75%200%200%200%202.04-.547%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%2024%2024%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M12.75%207.75a.75.75%200%200%200-1.5%200v3.5h-3.5a.75.75%200%200%200%200%201.5h3.5v3.5a.75.75%200%200%200%201.5%200v-3.5h3.5a.75.75%200%200%200%200-1.5h-3.5zm.042-6.367a1%201%200%200%200-1.579%200L9.8%203.2a.25.25%200%200%201-.291.079L7.377%202.41a1%201%200%200%200-1.367.79l-.315%202.28a.25.25%200%200%201-.213.213l-2.28.315a1%201%200%200%200-.79%201.367l.868%202.132a.25.25%200%200%201-.079.291l-1.816%201.413a1%201%200%200%200%200%201.579l1.816%201.413a.25.25%200%200%201%20.079.291l-.867%202.132a1%201%200%200%200%20.79%201.367l2.279.315a.25.25%200%200%201%20.213.213l.315%202.28a1%201%200%200%200%201.367.79l2.132-.868a.25.25%200%200%201%20.291.079l1.413%201.816a1%201%200%200%200%201.579%200l1.412-1.816a.25.25%200%200%201%20.292-.079l2.132.867a1%201%200%200%200%201.367-.79l.315-2.279a.25.25%200%200%201%20.213-.213l2.28-.315a1%201%200%200%200%20.789-1.367l-.867-2.132a.25.25%200%200%201%20.078-.291l1.817-1.413a1%201%200%200%200%200-1.579l-1.817-1.413a.25.25%200%200%201-.078-.291l.867-2.132a1%201%200%200%200-.79-1.367l-2.279-.315a.25.25%200%200%201-.213-.213l-.315-2.28a1%201%200%200%200-1.367-.79l-2.132.868a.25.25%200%200%201-.292-.079zM10.985%204.12l1.018-1.309l1.017%201.31a1.75%201.75%200%200%200%202.04.546l1.537-.624l.227%201.642a1.75%201.75%200%200%200%201.494%201.494l1.642.227l-.624%201.536a1.75%201.75%200%200%200%20.547%202.04l1.309%201.019l-1.31%201.018a1.75%201.75%200%200%200-.546%202.04l.624%201.536l-1.642.227a1.75%201.75%200%200%200-1.494%201.494l-.227%201.642l-1.536-.624a1.75%201.75%200%200%200-2.04.547l-1.019%201.308l-1.018-1.308a1.75%201.75%200%200%200-2.04-.547l-1.536.624l-.227-1.642a1.75%201.75%200%200%200-1.494-1.494l-1.642-.227l.624-1.536a1.75%201.75%200%200%200-.547-2.04L2.813%2012l1.31-1.018a1.75%201.75%200%200%200%20.546-2.041l-.624-1.536l1.642-.227a1.75%201.75%200%200%200%201.494-1.494l.227-1.642l1.536.624a1.75%201.75%200%200%200%202.04-.547%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/fluent/add-starburst-24-regular.svg?color=%231a73e8&size=48