@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 1.74 kB
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconClearFormatting = (props) => {
const size = sizeMap[props?.size ?? "m"];
const label = props?.label ?? "Icon";
return (_jsx("svg", { viewBox: "0 0 20 20", fill: "currentColor", xmlns: "http://www.w3.org/2000/svg", width: size, height: size, "aria-label": label, role: "img", ...props, children: _jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M12.4758 6.59277C13.2567 5.81214 14.5229 5.81214 15.3039 6.59277L17.4142 8.70703C18.1948 9.48802 18.1949 10.7542 17.4142 11.5352L12.9494 16H17.5002C17.7762 16 18 16.224 18.0002 16.5C18 16.776 17.7762 17 17.5002 17C15.3739 17 11.1213 16.9971 11.1213 16.9971C10.6095 16.9977 10.0977 16.8044 9.70721 16.4141L7.59686 14.2998C6.81616 13.5188 6.79103 12.2276 7.59686 11.4717L12.4758 6.59277ZM11.967 14.6738V14.6748L10.381 13.0869L10.3801 13.085L8.88983 11.5928L8.30389 12.1787C7.91358 12.5691 7.91372 13.2023 8.30389 13.5928L10.4142 15.707C10.8047 16.0971 11.4379 16.0972 11.8283 15.707L12.4142 15.1211L11.967 14.6738ZM7.00018 3C7.2031 3.00005 7.38618 3.12276 7.46307 3.31055L9.46014 8.19434L8.69354 8.96094L7.00018 4.82031L4.88202 10H7.65545L6.88983 10.7656C6.81149 10.8407 6.73976 10.9192 6.67206 11H4.47284L2.96307 14.6895C2.85847 14.9449 2.56623 15.0673 2.31073 14.9629C2.05536 14.8582 1.93283 14.566 2.03729 14.3105L6.53729 3.31055L6.57147 3.24316C6.66076 3.09408 6.82279 3.00008 7.00018 3ZM14.5969 7.2998C14.2064 6.9097 13.5732 6.9097 13.1828 7.2998L9.59686 10.8857L13.1213 14.4141L16.7072 10.8281C17.0973 10.4377 17.0973 9.80453 16.7072 9.41406L14.5969 7.2998Z" }) }));
};
IconClearFormatting.iconName = "clear-formatting";
export default IconClearFormatting;