mirror of
https://github.com/urosran/cally.git
synced 2025-11-26 08:24:55 +00:00
24 lines
901 B
TypeScript
24 lines
901 B
TypeScript
import * as React from "react";
|
|
import Svg, { Path, SvgProps } from "react-native-svg";
|
|
|
|
interface LockIconProps extends SvgProps {}
|
|
|
|
const LockIcon: React.FC<LockIconProps> = (props) => (
|
|
<Svg
|
|
width={22}
|
|
height={25}
|
|
fill="none"
|
|
{...props}
|
|
>
|
|
<Path
|
|
stroke="#919191"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
strokeWidth={2}
|
|
d="M11 15.688v2.5M4.75 10.1c.59-.037 1.316-.037 2.25-.037h8c.934 0 1.66 0 2.25.037m-12.5 0c-.735.044-1.257.145-1.702.372a3.75 3.75 0 0 0-1.64 1.639C1 12.913 1 13.963 1 16.064v1.75c0 2.1 0 3.15.409 3.952a3.75 3.75 0 0 0 1.639 1.639c.802.409 1.852.409 3.952.409h8c2.1 0 3.15 0 3.953-.41a3.75 3.75 0 0 0 1.638-1.638c.409-.802.409-1.852.409-3.952v-1.75c0-2.1 0-3.15-.409-3.953a3.75 3.75 0 0 0-1.639-1.639c-.445-.227-.967-.328-1.702-.372m-12.5 0V7.563a6.25 6.25 0 1 1 12.5 0V10.1"
|
|
/>
|
|
</Svg>
|
|
);
|
|
|
|
export default LockIcon;
|