@vector-im/compound-design-tokens
Version:
Compound design tokens
23 lines • 770 B
JavaScript
import { forwardRef } from "react";
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
function TimeIcon(props, ref) {
return /*#__PURE__*/_jsxs("svg", {
xmlns: "http://www.w3.org/2000/svg",
width: "1em",
height: "1em",
fill: "currentColor",
viewBox: "0 0 24 24",
ref: ref,
...props,
children: [/*#__PURE__*/_jsx("path", {
d: "M13 8a1 1 0 1 0-2 0v4a1 1 0 0 0 .293.707l2.83 2.83a1 1 0 0 0 1.414-1.414L13 11.586z"
}), /*#__PURE__*/_jsx("path", {
fillRule: "evenodd",
d: "M22 11.915c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10 10 4.477 10 10m-2 0a8 8 0 1 1-16 0 8 8 0 0 1 16 0",
clipRule: "evenodd"
})]
});
}
;
TimeIcon.displayName = "TimeIcon";
export default forwardRef(TimeIcon);