@zh5/react-native-remix-icon
Version:
Remix Icon for React Native
9 lines (8 loc) • 535 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgStarSmileLine = props => (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path d="m11.999.5 4.226 6.183 7.186 2.109-4.575 5.93.216 7.486-7.053-2.518-7.054 2.518.216-7.486-4.575-5.93 7.187-2.109L11.999.5Zm0 3.544L9.02 8.402 3.956 9.887l3.225 4.178-.153 5.275 4.97-1.774 4.97 1.774-.151-5.274 3.224-4.179-5.065-1.485L12 4.044Zm-2 7.956a2 2 0 1 0 4 0h2a4 4 0 1 1-8 0h2Z" />
</Svg>
);
export default SvgStarSmileLine;