@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 1.88 kB
JavaScript
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconChapterMarker = (props) => {
const size = sizeMap[props?.size ?? "m"];
const label = props?.label ?? "Icon";
return (_jsxs("svg", { viewBox: "0 0 24 24", fill: "currentColor", xmlns: "http://www.w3.org/2000/svg", width: size, height: size, "aria-label": label, role: "img", ...props, children: [_jsx("path", { d: "M14.0168 3.75C14.0168 3.33579 14.3526 3 14.7668 3H20.25C20.6642 3 21 3.33579 21 3.75C21 4.16421 20.6642 4.5 20.25 4.5H14.7668C14.3526 4.5 14.0168 4.16421 14.0168 3.75Z" }), _jsx("path", { d: "M14.0168 9.24863C14.0168 8.83442 14.3526 8.49863 14.7668 8.49863H20.25C20.6642 8.49863 21 8.83442 21 9.24863C21 9.66285 20.6642 9.99863 20.25 9.99863H14.7668C14.3526 9.99863 14.0168 9.66285 14.0168 9.24863Z" }), _jsx("path", { d: "M3.75 13.9973C3.33579 13.9973 3 14.3331 3 14.7473C3 15.1615 3.33579 15.4973 3.75 15.4973H20.25C20.6642 15.4973 21 15.1615 21 14.7473C21 14.3331 20.6642 13.9973 20.25 13.9973H3.75Z" }), _jsx("path", { d: "M3 20.25C3 19.8358 3.33579 19.5 3.75 19.5H11.2593C11.6735 19.5 12.0093 19.8358 12.0093 20.25C12.0093 20.6642 11.6735 21 11.2593 21H3.75C3.33579 21 3 20.6642 3 20.25Z" }), _jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M9 3H5C3.89543 3 3 3.89543 3 5V7.17157C3 7.70201 3.21071 8.21071 3.58579 8.58579L5.58579 10.5858C6.36683 11.3668 7.63316 11.3668 8.41421 10.5858L10.4142 8.58579C10.7893 8.21071 11 7.70201 11 7.17157V5C11 3.89543 10.1046 3 9 3ZM5 4.5H9C9.27614 4.5 9.5 4.72386 9.5 5V7.17157C9.5 7.30418 9.44732 7.43136 9.35355 7.52513L7.35355 9.52513C7.15829 9.72039 6.84171 9.72039 6.64645 9.52513L4.64645 7.52513C4.55268 7.43136 4.5 7.30418 4.5 7.17157V5C4.5 4.72386 4.72386 4.5 5 4.5Z" })] }));
};
IconChapterMarker.iconName = "chapter-marker";
export default IconChapterMarker;