Files
metabuilder/fakemui/icons/Launch.tsx
2025-12-30 14:11:25 +00:00

12 lines
391 B
TypeScript

import React from 'react'
import { Icon, IconProps } from './Icon'
export const Launch = (props: IconProps) => (
<Icon {...props}>
<path d="M208 48 L208 120" />
<path d="M136 48 L208 48 L136 120" />
<path d="M168 88 L88 168" />
<path d="M168 168 L168 200 C168 208.8 160.8 216 152 216 L56 216 C47.2 216 40 208.8 40 200 L40 104 C40 95.2 47.2 88 56 88 L88 88" />
</Icon>
)