29 lines
698 B
TypeScript
29 lines
698 B
TypeScript
![]() |
import * as React from 'react';
|
||
|
import type { SVGProps } from 'react';
|
||
|
const Database = (props: SVGProps<SVGSVGElement>) => (
|
||
|
<svg
|
||
|
xmlns="http://www.w3.org/2000/svg"
|
||
|
width="1em"
|
||
|
height="1em"
|
||
|
fill="none"
|
||
|
viewBox="0 0 24 24"
|
||
|
{...props}
|
||
|
>
|
||
|
<path
|
||
|
stroke="currentColor"
|
||
|
strokeLinecap="round"
|
||
|
strokeLinejoin="round"
|
||
|
strokeWidth={2}
|
||
|
d="M12 8c4.97 0 9-1.343 9-3s-4.03-3-9-3-9 1.343-9 3 4.03 3 9 3M21 12c0 1.66-4 3-9 3s-9-1.34-9-3"
|
||
|
/>
|
||
|
<path
|
||
|
stroke="currentColor"
|
||
|
strokeLinecap="round"
|
||
|
strokeLinejoin="round"
|
||
|
strokeWidth={2}
|
||
|
d="M3 5v14c0 1.66 4 3 9 3s9-1.34 9-3V5"
|
||
|
/>
|
||
|
</svg>
|
||
|
);
|
||
|
export default Database;
|