mirror of
https://github.com/urosran/cally.git
synced 2025-11-26 00:24:53 +00:00
21 lines
439 B
TypeScript
21 lines
439 B
TypeScript
import * as React from "react";
|
|
import Svg, { SvgProps, Path } from "react-native-svg";
|
|
const PlusIcon = (props: SvgProps) => (
|
|
<Svg
|
|
width={props.width || 14}
|
|
height={props.height || 15}
|
|
viewBox="0 0 14 15"
|
|
fill="none"
|
|
{...props}
|
|
>
|
|
<Path
|
|
stroke="#fff"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
strokeWidth={2}
|
|
d="M1 7.632h12m-6-6v12"
|
|
/>
|
|
</Svg>
|
|
);
|
|
export default PlusIcon;
|