25 lines
1.0 KiB
TypeScript
25 lines
1.0 KiB
TypeScript
import * as React from "react"
|
|
import Svg, { Path } from "react-native-svg"
|
|
|
|
interface AddCuteFiIconProps {
|
|
width?: number
|
|
height?: number
|
|
color?: string
|
|
}
|
|
|
|
export const AddCuteFiIcon = ({
|
|
width = 24,
|
|
height = 24,
|
|
color = "#10161F",
|
|
}: AddCuteFiIconProps) => {
|
|
return (
|
|
<Svg width={width} height={height} fill="none" viewBox="0 0 24 24">
|
|
<Path
|
|
d="M11.493 3.592a1.54 1.54 0 0 0-.844.768l-.109.22-.02 2.96-.02 2.96-2.96.02-2.96.02-.221.109a1.677 1.677 0 0 0-.71.71c-.098.198-.109.265-.109.641 0 .377.011.443.11.644.132.268.475.606.74.728.189.087.208.088 3.15.108l2.96.02.02 2.96c.02 2.942.021 2.961.108 3.15.122.265.46.608.728.74.201.099.267.11.644.11s.443-.011.644-.11c.268-.132.606-.475.728-.74.087-.189.088-.208.108-3.15l.02-2.96 2.96-.02 2.96-.02.224-.11c.268-.132.606-.475.728-.74.127-.275.127-.945 0-1.22-.122-.265-.46-.608-.728-.74l-.224-.11-2.96-.02-2.96-.02-.02-2.96c-.02-2.942-.021-2.961-.108-3.15-.122-.265-.46-.608-.725-.738-.295-.145-.838-.173-1.154-.06"
|
|
fill={color}
|
|
fillRule="evenodd"
|
|
/>
|
|
</Svg>
|
|
)
|
|
}
|