react-native-remix-icon
Version:
Remix Icon for React Native
14 lines (11 loc) • 588 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgStarSmileLine(props) {
return (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path fill="none" d="M0 0h24v24H0z" />
<Path d="M12 .5l4.226 6.183 7.187 2.109-4.575 5.93.215 7.486L12 19.69l-7.053 2.518.215-7.486-4.575-5.93 7.187-2.109L12 .5zm0 3.544L9.022 8.402 3.957 9.887l3.225 4.178-.153 5.275L12 17.566l4.97 1.774-.152-5.275 3.224-4.178-5.064-1.485L12 4.044zM10 12a2 2 0 104 0h2a4 4 0 11-8 0h2z" />
</Svg>
);
}
export default SvgStarSmileLine;