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

14 lines
296 B
TypeScript

import React from 'react'
import { Icon, IconProps } from './Icon'
/**
* Navigate icon - represents navigation action
*/
export const Navigate = (props: IconProps) => (
<Icon {...props}>
<path d="M12 2L4.5 20.29l.71.71L12 18l6.79 3 .71-.71L12 2z" />
</Icon>
)
export default Navigate