@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 1.69 kB
JavaScript
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconDatabaseFilled = (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: "M18.9732 11.1991C17.1116 12.0265 14.6449 12.5 12 12.5C9.35508 12.5 6.88843 12.0265 5.02683 11.1991C4.27294 10.8641 3.5746 10.4516 3 9.95263V12C3 12.5248 3.23235 13.045 3.68508 13.5307C4.13737 14.016 4.8003 14.457 5.63604 14.8284C6.47177 15.1999 7.46392 15.4945 8.55585 15.6955C9.64778 15.8965 10.8181 16 12 16C13.1819 16 14.3522 15.8965 15.4442 15.6955C16.5361 15.4945 17.5282 15.1999 18.364 14.8284C19.1997 14.457 19.8626 14.016 20.3149 13.5307C20.7676 13.045 21 12.5248 21 12V9.95263C20.4254 10.4516 19.7271 10.8641 18.9732 11.1991Z" }), _jsx("path", { d: "M21 14.9508C20.4293 15.4475 19.7336 15.8612 18.9732 16.1991C18.0093 16.6275 16.9001 16.9527 15.7157 17.1707C14.5287 17.3893 13.2672 17.5 12 17.5C10.7328 17.5 9.47133 17.3893 8.28427 17.1707C7.09988 16.9527 5.99067 16.6275 5.02683 16.1991C4.26639 15.8612 3.57073 15.4475 3 14.9508V17C3 18.0573 3.94263 19.0758 5.63604 19.8284C7.32386 20.5786 9.61304 21 12 21C14.387 21 16.6761 20.5786 18.364 19.8284C20.0574 19.0758 21 18.0573 21 17V14.9508Z" }), _jsx("path", { d: "M12 3C7.02944 3 3 4.79086 3 7C3 9.20914 7.02944 11 12 11C16.9706 11 21 9.20914 21 7C21 4.79086 16.9706 3 12 3Z" })] }));
};
IconDatabaseFilled.iconName = "database--filled";
export default IconDatabaseFilled;