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

10 lines
211 B
TypeScript

import { Icon, IconProps } from './Icon'
export const Transfer = (props: IconProps) => (
<Icon {...props}>
<path d="M7 16l-4-4 4-4" />
<path d="M3 12h18" />
<path d="M17 8l4 4-4 4" />
</Icon>
)