@botonic/react
Version:
Build Chatbots using React
9 lines • 344 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import React from 'react';
import styled from 'styled-components';
import { resolveImage } from '../../util/environment';
const PointerImage = styled.img `
cursor: pointer;
`;
export const Icon = props => _jsx(PointerImage, { src: resolveImage(props.src) });
//# sourceMappingURL=common.js.map