mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 14:25:02 +00:00
8 lines
449 B
TypeScript
8 lines
449 B
TypeScript
import { Icon, type IconProps } from './Icon'
|
|
|
|
export const OpenInNew = (props: IconProps) => (
|
|
<Icon {...props}>
|
|
<path d="M224 104a8 8 0 0 1-16 0V59.31l-66.34 66.35a8.00035 8.00035 0 0 1-11.32-11.32L196.69 48H152a8 8 0 0 1 0-16h64a8.00039 8.00039 0 0 1 8 8Zm-40 24a8 8 0 0 0-8 8v72H48V80h72a8 8 0 0 0 0-16H48a16.01833 16.01833 0 0 0-16 16v128a16.01833 16.01833 0 0 0 16 16h128a16.01833 16.01833 0 0 0 16-16v-72a8 8 0 0 0-8-8Z" />
|
|
</Icon>
|
|
)
|