dappconnect-sdks/packages/icons/20/left-align-icon.tsx

28 lines
661 B
TypeScript

import { Path, Svg } from 'react-native-svg'
import { useCurrentColor } from 'tamagui'
import type { SvgProps } from 'react-native-svg'
const SvgLeftAlignIcon = (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}
>
<Path
d="M15 11.75H5M15 5H5M11 15H5M11 8.25H5"
stroke={color}
strokeWidth={1.5}
strokeLinecap="square"
strokeLinejoin="round"
/>
</Svg>
)
}
export default SvgLeftAlignIcon