dappconnect-sdks/packages/icons/12/pause-icon.tsx

22 lines
540 B
TypeScript
Raw Normal View History

import { Rect, Svg } from 'react-native-svg'
import { useCurrentColor } from 'tamagui'
import type { SvgProps } from 'react-native-svg'
2023-01-23 13:03:08 +00:00
const SvgPauseIcon = (props: SvgProps) => {
const { color: colorToken = 'currentColor', ...rest } = props
const color = useCurrentColor(colorToken)
return (
<Svg
width={12}
height={12}
fill="none"
xmlns="http://www.w3.org/2000/svg"
{...props}
>
<Rect x={2} y={2} width={8} height={8} rx={2} fill={color} />
</Svg>
)
}
2023-01-23 13:03:08 +00:00
export default SvgPauseIcon