27 lines
733 B
TypeScript
27 lines
733 B
TypeScript
import { Path, Svg } from 'react-native-svg'
|
|
import { useCurrentColor } from 'tamagui'
|
|
|
|
import type { SvgProps } from 'react-native-svg'
|
|
|
|
const SvgItalicIcon = (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"
|
|
{...rest}
|
|
>
|
|
<Path
|
|
fillRule="evenodd"
|
|
clipRule="evenodd"
|
|
d="M14.75 4.5a.75.75 0 0 1-.75.75h-2.448l-1.583 9.5H12a.75.75 0 0 1 0 1.5H6a.75.75 0 0 1 0-1.5h2.448l1.583-9.5H8a.75.75 0 0 1 0-1.5h6a.75.75 0 0 1 .75.75Z"
|
|
fill={color}
|
|
/>
|
|
</Svg>
|
|
)
|
|
}
|
|
export default SvgItalicIcon
|