UNPKG

@iconpark-miniprogram/taro

Version:

icon-park with taro

10 lines (9 loc) 378 B
import React from 'react'; import { BlockTen as originIcon } from '@icon-park/svg'; import svg64 from 'svg64'; const BlockTen = (props) => { const base64Data = svg64(originIcon(props)); //@ts-ignore next-line return React.createElement("image", { src: base64Data, style: { width: '1em', height: '1em' }, mode: "widthFix", alt: 'icon' }); }; export default BlockTen;