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

9 lines
510 B
TypeScript

import React from 'react'
import { Icon, IconProps } from './Icon'
export const Extension = (props: IconProps) => (
<Icon {...props}>
<path d="M128 56 L128 32 C128 23.2 120.8 16 112 16 C103.2 16 96 23.2 96 32 L96 56 L56 56 L56 96 L32 96 C23.2 96 16 103.2 16 112 C16 120.8 23.2 128 32 128 L56 128 L56 168 L96 168 L96 192 C96 200.8 103.2 208 112 208 C120.8 208 128 200.8 128 192 L128 168 L168 168 L168 128 L192 128 C200.8 128 208 120.8 208 112 C208 103.2 200.8 96 192 96 L168 96 L168 56 Z" />
</Icon>
)