UNPKG

@botonic/react

Version:

Build Chatbots using React

10 lines (7 loc) 251 B
import React from 'react' import styled from 'styled-components' import { resolveImage } from '../../util/environment' const PointerImage = styled.img` cursor: pointer; ` export const Icon = props => <PointerImage src={resolveImage(props.src)} />