UNPKG

@elgato/icons

Version:

Icons used throughout the Elgato ecosystem.

10 lines (9 loc) 1.89 kB
import { jsx as _jsx } from "react/jsx-runtime"; import { sizeMap } from "../../metadata/sizing.js"; const IconKeyboardFilled = (props) => { const size = sizeMap[props?.size ?? "m"]; const label = props?.label ?? "Icon"; return (_jsx("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", { fillRule: "evenodd", clipRule: "evenodd", d: "M3 4C1.89543 4 1 4.89543 1 6V18C1 19.1046 1.89543 20 3 20H21C22.1046 20 23 19.1046 23 18V6C23 4.89543 22.1046 4 21 4H3ZM5.75 15C5.33579 15 5 15.3358 5 15.75C5 16.1642 5.33579 16.5 5.75 16.5H18.25C18.6642 16.5 19 16.1642 19 15.75C19 15.3358 18.6642 15 18.25 15H5.75ZM7.75 13.5C8.44036 13.5 9 12.9404 9 12.25C9 11.5596 8.44036 11 7.75 11C7.05964 11 6.5 11.5596 6.5 12.25C6.5 12.9404 7.05964 13.5 7.75 13.5ZM7 8.75C7 9.44036 6.44036 10 5.75 10C5.05964 10 4.5 9.44036 4.5 8.75C4.5 8.05964 5.05964 7.5 5.75 7.5C6.44036 7.5 7 8.05964 7 8.75ZM11.1666 8.75C11.1666 9.44036 10.607 10 9.91663 10C9.22627 10 8.66663 9.44036 8.66663 8.75C8.66663 8.05964 9.22627 7.5 9.91663 7.5C10.607 7.5 11.1666 8.05964 11.1666 8.75ZM12 13.5C12.6904 13.5 13.25 12.9404 13.25 12.25C13.25 11.5596 12.6904 11 12 11C11.3096 11 10.75 11.5596 10.75 12.25C10.75 12.9404 11.3096 13.5 12 13.5ZM14.0833 10C14.7736 10 15.3333 9.44036 15.3333 8.75C15.3333 8.05964 14.7736 7.5 14.0833 7.5C13.3929 7.5 12.8333 8.05964 12.8333 8.75C12.8333 9.44036 13.3929 10 14.0833 10ZM16.25 13.5C16.9404 13.5 17.5 12.9404 17.5 12.25C17.5 11.5596 16.9404 11 16.25 11C15.5596 11 15 11.5596 15 12.25C15 12.9404 15.5596 13.5 16.25 13.5ZM19.5 8.75C19.5 9.44036 18.9404 10 18.25 10C17.5596 10 17 9.44036 17 8.75C17 8.05964 17.5596 7.5 18.25 7.5C18.9404 7.5 19.5 8.05964 19.5 8.75Z" }) })); }; IconKeyboardFilled.iconName = "keyboard--filled"; export default IconKeyboardFilled;