@botonic/react
Version:
Build Chatbots using React
6 lines • 783 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { COLORS } from '../../../constants';
export const HandSvg = ({ color = COLORS.N500 }) => {
return (_jsx("svg", Object.assign({ xmlns: 'http://www.w3.org/2000/svg', viewBox: '0 0 512 512', fill: color }, { children: _jsx("path", { d: 'M288 32c0-17.7-14.3-32-32-32s-32 14.3-32 32V240c0 8.8-7.2 16-16 16s-16-7.2-16-16V64c0-17.7-14.3-32-32-32s-32 14.3-32 32V336c0 1.5 0 3.1 .1 4.6L67.6 283c-16-15.2-41.3-14.6-56.6 1.4s-14.6 41.3 1.4 56.6L124.8 448c43.1 41.1 100.4 64 160 64H304c97.2 0 176-78.8 176-176V128c0-17.7-14.3-32-32-32s-32 14.3-32 32V240c0 8.8-7.2 16-16 16s-16-7.2-16-16V64c0-17.7-14.3-32-32-32s-32 14.3-32 32V240c0 8.8-7.2 16-16 16s-16-7.2-16-16V32z', fill: 'currentColor' }) })));
};
//# sourceMappingURL=hand.js.map