@fruits-chain/react-native-xiaoshu
Version:
React Native UI library
18 lines • 516 B
JavaScript
import React from 'react';
import { Path } from 'react-native-svg';
import { genIcon } from './helper/gen';
const IconDeleteFill = genIcon({
size: 'small',
render: (_, _ref) => {
let {
themeVar
} = _ref;
return /*#__PURE__*/React.createElement(Path, {
d: "M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0zm4.25 7h-8.5a.75.75 0 0 0 0 1.5h8.5a.75.75 0 1 0 0-1.5z",
fill: themeVar.error,
fillRule: "evenodd"
});
}
});
export default IconDeleteFill;
//# sourceMappingURL=delete.fill.js.map