Files
metabuilder/icons/react/fakemui/ArrowRight.tsx
2026-03-09 22:30:41 +00:00

10 lines
247 B
TypeScript

import React from 'react'
import { Icon, IconProps } from './Icon'
export const ArrowRight = (props: IconProps) => (
<Icon {...props}>
<line x1="40" y1="128" x2="216" y2="128" />
<polyline points="144 56 216 128 144 200" />
</Icon>
)