dappconnect-sdks/packages/icons/src/unpin-icon.tsx

26 lines
1.3 KiB
XML

import { createIcon } from '../lib/create-icon'
const SvgUnpinIcon = createIcon(props => {
return (
<svg
{...props}
xmlns="http://www.w3.org/2000/svg"
width={props.width}
height={props.height}
fill="none"
viewBox="0 0 20 20"
focusable={false}
aria-hidden={true}
>
<path
fill={props.color}
fillRule="evenodd"
d="M8.785 8.047c.626-1.083 1.122-1.887 1.548-2.471.431-.59.755-.906 1.02-1.063a.883.883 0 0 1 .7-.107c.305.067.68.244 1.219.555.538.31.888.552 1.108.79a.97.97 0 0 1 .29.694c.005.313-.095.756-.38 1.425-.283.663-.724 1.496-1.348 2.577l-.085.148.005.17.022.702a5.487 5.487 0 0 1 1.219-.631c.57-.995 1-1.812 1.29-2.496.31-.724.486-1.352.476-1.916a2.16 2.16 0 0 0-.608-1.488c-.354-.383-.845-.7-1.39-1.014-.543-.314-1.059-.578-1.561-.688a2.078 2.078 0 0 0-1.569.247c-.477.282-.917.756-1.377 1.388-.444.609-.94 1.41-1.53 2.427l-4.03 2.117-.963.506.943.545 4.235 2.445L5.577 17h1.44l2.046-3.487 1.653.954c.114-.392.27-.767.464-1.118l-5.853-3.38 3.218-1.69.154-.08.086-.151Zm4.67 6.256.848-.849L16 15.151l1.697-1.697.848.849L16.848 16l1.697 1.697-.848.849L16 16.849l-1.697 1.697-.849-.849L15.151 16l-1.697-1.697Z"
clipRule="evenodd"
/>
</svg>
)
})
export default SvgUnpinIcon