mirror of
https://github.com/urosran/cally.git
synced 2025-11-26 00:24:53 +00:00
24 lines
1.1 KiB
TypeScript
24 lines
1.1 KiB
TypeScript
import * as React from "react";
|
|
import Svg, { Path, SvgProps } from "react-native-svg";
|
|
const GiftIcon: React.FC<SvgProps> = (props) => (
|
|
<Svg width={props.width || 14} height={props.height || 14} fill="none" {...props}>
|
|
<Path
|
|
fill={props.color || "#46A80A"}
|
|
d="M6.09 12.581V8.834H1.872v-.937H6.09V4.149H1.873v8.432H6.09Zm.936 0h4.216V4.15H7.026v3.748h4.216v.937H7.026v3.747ZM.936 3.212H12.18v9.838a.469.469 0 0 1-.468.468H1.405a.468.468 0 0 1-.468-.468V3.212Z"
|
|
/>
|
|
<Path
|
|
fill={props.color || "#46A80A"}
|
|
d="M.468 3.212h12.18c.312 0 .468.157.468.469 0 .312-.156.468-.468.468H.468C.156 4.15 0 3.993 0 3.681c0-.312.156-.469.468-.469Z"
|
|
/>
|
|
<Path
|
|
fill={props.color || "#46A80A"}
|
|
d="M5.153 3.213a.937.937 0 1 0 0-1.874.937.937 0 0 0 0 1.874Zm0 .936a1.874 1.874 0 1 1 0-3.747 1.874 1.874 0 0 1 0 3.747Z"
|
|
/>
|
|
<Path
|
|
fill={props.color || "#46A80A"}
|
|
d="M7.964 3.213a.937.937 0 1 0 0-1.874.937.937 0 0 0 0 1.874Zm0 .936a1.874 1.874 0 1 1 0-3.747 1.874 1.874 0 0 1 0 3.747Z"
|
|
/>
|
|
</Svg>
|
|
);
|
|
export default GiftIcon;
|