UNPKG

@react-three/uikit-lucide

Version:

lucide icons for r3/uikit

10 lines (9 loc) 2.15 kB
import { jsx as _jsx } from "react/jsx-runtime"; /* eslint-disable no-shadow-restricted-names */ import { Icon } from "@react-three/uikit"; import { forwardRef } from "react"; const text = `<svg class="lucide lucide-fast-forward" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M1.689 4.056 C 1.452 4.134,1.262 4.289,1.131 4.511 L 1.020 4.700 1.010 11.914 C 1.003 16.668,1.013 19.179,1.039 19.278 C 1.099 19.498,1.291 19.739,1.508 19.867 C 1.673 19.964,1.743 19.980,2.000 19.980 C 2.238 19.980,2.331 19.962,2.450 19.892 C 2.532 19.843,4.658 18.202,7.175 16.244 C 10.271 13.836,11.779 12.639,11.839 12.542 C 11.887 12.463,11.942 12.350,11.960 12.289 C 11.978 12.229,11.995 13.755,11.998 15.680 C 12.002 18.492,12.014 19.209,12.057 19.330 C 12.136 19.551,12.298 19.744,12.511 19.869 C 12.672 19.964,12.744 19.980,13.000 19.980 C 13.238 19.980,13.331 19.962,13.450 19.892 C 13.532 19.843,15.660 18.201,18.178 16.242 C 23.301 12.257,22.980 12.539,22.980 12.019 C 22.980 11.458,23.360 11.795,18.138 7.731 C 15.587 5.747,13.446 4.100,13.380 4.071 C 13.170 3.982,12.765 4.006,12.539 4.122 C 12.316 4.237,12.104 4.488,12.042 4.711 C 12.015 4.808,11.999 6.076,11.997 8.340 C 11.994 11.449,11.987 11.802,11.935 11.655 C 11.903 11.564,11.819 11.426,11.748 11.348 C 11.615 11.202,2.678 4.244,2.450 4.109 C 2.283 4.010,1.910 3.984,1.689 4.056 M6.213 9.540 C 7.941 10.882,9.356 11.989,9.356 12.000 C 9.357 12.011,7.927 13.131,6.178 14.489 L 3.000 16.958 3.000 12.016 C 3.000 9.165,3.015 7.079,3.035 7.087 C 3.055 7.094,4.485 8.198,6.213 9.540 M17.213 9.540 C 18.941 10.882,20.356 11.989,20.356 12.000 C 20.357 12.011,18.927 13.131,17.178 14.489 L 14.000 16.958 14.000 12.016 C 14.000 9.165,14.015 7.079,14.035 7.087 C 14.055 7.094,15.485 8.198,17.213 9.540 " stroke="none" fill="black" fill-rule="evenodd"></path></svg>`; export const FastForwardIcon = /*@__PURE__*/ forwardRef((props, ref) => { return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 }); }); export const FastForward = FastForwardIcon;