open-icon
Version:
Open Icon
8 lines (7 loc) • 629 B
JavaScript
// lib/icons/three-dots-horizontal.ts
var IconThreeDotsHorizontal = `<svg id="three-dots-horizontal" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 72"><circle cx="36" cy="36" r="6.75" style="fill: var(--icon-line-color, currentColor); stroke-width: 0px;"/><circle cx="15.75" cy="36" r="6.75" style="fill: var(--icon-line-color, currentColor); stroke-width: 0px;"/><circle cx="56.25" cy="36" r="6.75" style="fill: var(--icon-line-color, currentColor); stroke-width: 0px;"/></svg>`;
var three_dots_horizontal_default = IconThreeDotsHorizontal;
export {
IconThreeDotsHorizontal,
three_dots_horizontal_default as default
};