UNPKG

@elgato/icons

Version:

Icons used throughout the Elgato ecosystem.

10 lines (9 loc) 1.79 kB
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; import { sizeMap } from "../../metadata/sizing.js"; const IconDialPress = (props) => { const size = sizeMap[props?.size ?? "m"]; const label = props?.label ?? "Icon"; return (_jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "currentColor", viewBox: "0 0 24 24", width: size, height: size, "aria-label": label, role: "img", ...props, children: [_jsx("path", { d: "M12 1a.75.75 0 0 1 .75.75v3.69l.467-.467a.75.75 0 0 1 1.06 1.06L12.53 7.78a.75.75 0 0 1-1.06 0L9.723 6.033a.75.75 0 1 1 1.06-1.06l.467.466V1.75A.75.75 0 0 1 12 1" }), _jsx("path", { fillRule: "evenodd", d: "M17.027 5.888a.75.75 0 1 0-.562 1.391c1.128.456 1.71.988 1.927 1.37a.7.7 0 0 1 .107.384c-.006.102-.047.244-.18.434-.304.428-1.003.961-2.198 1.384-1.168.413-2.609.649-4.119.649s-2.95-.235-4.119-.648c-1.196-.422-1.896-.955-2.2-1.384-.135-.19-.175-.332-.182-.435a.7.7 0 0 1 .106-.382c.216-.382.798-.915 1.924-1.37a.75.75 0 1 0-.562-1.39C5.682 6.41 4.75 7.116 4.3 7.912A2.2 2.2 0 0 0 4 9v10c0 2.21 3.582 4 8 4s8-1.79 8-4V9a2.2 2.2 0 0 0-.302-1.09c-.451-.795-1.384-1.502-2.67-2.022m1.473 9.614v-4.17c-.515.359-1.15.675-1.88.933l-.12.042v1.512a.75.75 0 0 1-1.5 0v-1.11c-.718.144-1.476.237-2.25.273v1.265a.75.75 0 0 1-1.5 0v-1.265A15 15 0 0 1 9 12.708v1.111a.75.75 0 0 1-1.5 0v-1.512l-.116-.04c-.732-.259-1.368-.575-1.884-.935v4.17c0 .23.226.843 1.514 1.487 1.199.6 2.96 1.013 4.986 1.013 2.027 0 3.787-.414 4.986-1.013 1.288-.644 1.514-1.256 1.514-1.487m-13 2.333c1.452 1.01 3.822 1.667 6.5 1.667s5.048-.657 6.5-1.667V19c0 .23-.226.843-1.514 1.487-1.199.6-2.96 1.013-4.986 1.013-2.027 0-3.787-.414-4.986-1.013C5.726 19.843 5.5 19.23 5.5 19z", clipRule: "evenodd" })] })); }; IconDialPress.iconName = "dial-press"; export default IconDialPress;