Files
Frontend-Internal-Developer…/frontend/src/app/components/icons/ellipsis.jsx
2026-03-16 17:33:05 +08:00

22 lines
718 B
JavaScript

import React from "react";
const ellipsis = ({ width = "24", height = "24", style }) => {
return (
<svg
className={style}
xmlns="http://www.w3.org/2000/svg"
width={width}
height={height}
viewBox="0 0 24 24"
fill="none"
>
<path
d="M12 16C13.1046 16 14 16.8954 14 18C14 19.1046 13.1046 20 12 20C10.8954 20 10 19.1046 10 18C10 16.8954 10.8954 16 12 16ZM12 10C13.1046 10 14 10.8954 14 12C14 13.1046 14 14 12 14C10.8954 14 10 13.1046 10 12C10 10.8954 10.8954 10 12 10ZM12 4C13.1046 4 14 4.89543 14 6C14 7.10457 13.1046 8 12 8C10.8954 8 10 7.10457 10 6C10 4.89543 10.8954 4 12 4Z"
fill="currentColor"
/>
</svg>
);
};
export default ellipsis;