mirror of
https://github.com/urosran/cally.git
synced 2025-11-26 16:34:54 +00:00
22 lines
895 B
TypeScript
22 lines
895 B
TypeScript
import * as React from "react"
|
|
import Svg, { Path } from "react-native-svg"
|
|
|
|
interface BinIconProps extends React.SVGProps<SVGSVGElement> {}
|
|
const BinIcon: React.FC<BinIconProps> = (props) => (
|
|
<Svg
|
|
width={19}
|
|
height={21}
|
|
fill="none"
|
|
{...props}
|
|
>
|
|
<Path
|
|
stroke="#B7B7B7"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
strokeWidth={1.7}
|
|
d="m15.568 4.122-.834 12.5c-.072 1.095-.11 1.642-.345 2.057-.209.366-.523.66-.901.843-.43.208-.979.208-2.076.208H7.237c-1.097 0-1.646 0-2.076-.208a2.081 2.081 0 0 1-.9-.843c-.237-.415-.274-.962-.347-2.057l-.833-12.5M1 4.122h16.649m-4.162 0-.282-.845c-.273-.819-.41-1.228-.662-1.53a2.08 2.08 0 0 0-.835-.603C11.34 1 10.909 1 10.046 1H8.603c-.863 0-1.295 0-1.662.144a2.081 2.081 0 0 0-.835.602c-.253.303-.39.712-.662 1.53l-.282.846m6.244 4.162v7.284M7.243 8.284v7.284"
|
|
/>
|
|
</Svg>
|
|
)
|
|
export default BinIcon
|