dappconnect-sdks/packages/icons/20/toggle-icon.tsx

35 lines
751 B
TypeScript

import { Path, Rect, Svg } from 'react-native-svg'
import { useCurrentColor } from 'tamagui'
import type { SvgProps } from 'react-native-svg'
const SvgToggleIcon = (props: SvgProps) => {
const { color: colorToken = 'currentColor', ...rest } = props
const color = useCurrentColor(colorToken)
return (
<Svg
width={20}
height={20}
fill="none"
xmlns="http://www.w3.org/2000/svg"
{...props}
>
<Rect
x={2}
y={5}
width={16}
height={10}
rx={5}
stroke={color}
strokeWidth={1.3}
/>
<Path
d="M8 10a5 5 0 0 1 10 0 5 5 0 0 1-10 0Z"
stroke={color}
strokeWidth={1.3}
/>
</Svg>
)
}
export default SvgToggleIcon