open-icon
Version:
Open Icon
8 lines (7 loc) • 1.16 kB
JavaScript
// lib/icons/camera.ts
var IconCamera = `<svg id="camera" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 72"><path d="M57,18H15c-3.31,0-6,2.69-6,6v24c0,3.31,2.69,6,6,6h42c3.31,0,6-2.69,6-6v-24c0-3.31-2.69-6-6-6ZM36,45c-4.97,0-9-4.03-9-9s4.03-9,9-9,9,4.03,9,9-4.03,9-9,9Z" style="fill: var(--icon-fill, rgba(0, 0, 0, 0)); opacity: var(--icon-fill-opacity, 1); stroke-width: 0px;"/><circle cx="36" cy="36" r="9" style="fill: none; stroke-linecap: round; stroke-linejoin: round; stroke-width:var(--icon-stroke-width-m, calc(var(--icon-stroke-width, 5) * 1));"/><path d="M31,9h10c2.21,0,4,1.79,4,4v5h-18v-5c0-2.21,1.79-4,4-4Z" style="fill: none; stroke: var(--icon-stroke-color-secondary, var(--icon-stroke-color, currentColor)); stroke-linecap: round; stroke-linejoin: round; stroke-width:var(--icon-stroke-width-m, calc(var(--icon-stroke-width, 5) * 1));"/><rect x="9" y="18" width="54" height="36" rx="6" ry="6" style="fill: none; stroke-linecap: round; stroke-linejoin: round; stroke-width:var(--icon-stroke-width-m, calc(var(--icon-stroke-width, 5) * 1));"/></svg>`;
var camera_default = IconCamera;
export {
IconCamera,
camera_default as default
};