mirror of
https://github.com/urosran/cally.git
synced 2025-11-26 00:24:53 +00:00
ui fixes
This commit is contained in:
19
assets/svgs/PlusIcon.tsx
Normal file
19
assets/svgs/PlusIcon.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
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}
|
||||
fill="none"
|
||||
{...props}
|
||||
>
|
||||
<Path
|
||||
stroke="#fff"
|
||||
strokeLinecap="round"
|
||||
strokeLinejoin="round"
|
||||
strokeWidth={2}
|
||||
d="M1 7.632h12m-6-6v12"
|
||||
/>
|
||||
</Svg>
|
||||
);
|
||||
export default PlusIcon;
|
||||
Reference in New Issue
Block a user