mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 13:54:57 +00:00
11 lines
495 B
TypeScript
11 lines
495 B
TypeScript
import React from 'react'
|
|
import { Icon, IconProps } from './Icon'
|
|
|
|
export const LinkOff = (props: IconProps) => (
|
|
<Icon {...props}>
|
|
<path d="M136.4 136.4 L179.7 93.1 C194.9 77.9 219.3 77.9 234.5 93.1 C249.7 108.3 249.7 132.7 234.5 147.9 L191.2 191.2 C176 206.4 151.6 206.4 136.4 191.2" />
|
|
<path d="M119.6 119.6 L76.3 162.9 C61.1 178.1 36.7 178.1 21.5 162.9 C6.3 147.7 6.3 123.3 21.5 108.1 L64.8 64.8 C80 49.6 104.4 49.6 119.6 64.8" />
|
|
<line x1="216 40" x2="40 216" />
|
|
</Icon>
|
|
)
|