mirror of
https://github.com/urosran/cally.git
synced 2025-11-26 00:24:53 +00:00
22 lines
1.0 KiB
TypeScript
22 lines
1.0 KiB
TypeScript
import * as React from "react";
|
|
import Svg, { SvgProps, Path } from "react-native-svg";
|
|
const RemindersIcon = (props: SvgProps) => (
|
|
<Svg
|
|
width={props.width || 22}
|
|
height={props.width || 22}
|
|
viewBox="0 0 22 22"
|
|
fill="none"
|
|
{...props}
|
|
>
|
|
<Path
|
|
fill={props.color || "#919191"}
|
|
fillRule="evenodd"
|
|
stroke={props.color || "#919191"}
|
|
strokeWidth={0.4}
|
|
d="M3.974 3.96C7.964-.023 14.45.02 18.464 4.034c4.016 4.016 4.057 10.506.067 14.495-3.99 3.99-10.48 3.95-14.495-.067a10.315 10.315 0 0 1-2.94-8.705.788.788 0 1 1 1.561.214 8.738 8.738 0 0 0 2.494 7.376c3.41 3.411 8.902 3.43 12.265.067C20.78 14.05 20.76 8.56 17.35 5.148c-3.41-3.41-8.897-3.43-12.26-.072l.786.004a.788.788 0 1 1-.008 1.576L3.19 6.643a.788.788 0 0 1-.785-.784l-.013-2.677a.788.788 0 1 1 1.577-.007l.004.786Zm7.276 2.293c.435 0 .788.353.788.789v3.878l2.398 2.398a.788.788 0 1 1-1.115 1.115l-2.86-2.86V7.043c0-.436.354-.789.789-.789Z"
|
|
clipRule="evenodd"
|
|
/>
|
|
</Svg>
|
|
);
|
|
export default RemindersIcon;
|