28 lines
887 B
TypeScript
28 lines
887 B
TypeScript
import { forwardRef } from 'react';
|
|
import type { IconProps } from './types';
|
|
|
|
export const Database = forwardRef<SVGSVGElement, IconProps>(function Database(
|
|
{ color = 'currentColor', ...props },
|
|
forwardedRef,
|
|
) {
|
|
return (
|
|
<svg
|
|
width="24"
|
|
height="24"
|
|
viewBox="0 0 24 24"
|
|
fill="none"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
ref={forwardedRef}
|
|
{...props}
|
|
>
|
|
<path
|
|
d="M21 5C21 6.65685 16.9706 8 12 8C7.02944 8 3 6.65685 3 5M21 5C21 3.34315 16.9706 2 12 2C7.02944 2 3 3.34315 3 5M21 5V19C21 20.66 17 22 12 22C7 22 3 20.66 3 19V5M21 12C21 13.66 17 15 12 15C7 15 3 13.66 3 12"
|
|
stroke={color}
|
|
strokeWidth="2"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
/>
|
|
</svg>
|
|
);
|
|
});
|