mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 13:54:57 +00:00
11 lines
338 B
TypeScript
11 lines
338 B
TypeScript
import React from 'react'
|
|
import { Icon, IconProps } from './Icon'
|
|
|
|
export const Save = (props: IconProps) => (
|
|
<Icon {...props}>
|
|
<path d="M200 224H56a8 8 0 0 1-8-8V40a8 8 0 0 1 8-8h104l48 48v136a8 8 0 0 1-8 8Z" />
|
|
<polyline points="152 32 152 88 208 88" />
|
|
<rect x="80" y="152" width="96" height="48" rx="4" />
|
|
</Icon>
|
|
)
|