import React from 'react';
import { css, cx } from '@leafygreen-ui/emotion';
import { useDarkMode } from '@leafygreen-ui/leafygreen-provider';
import { HTMLElementProps } from '@leafygreen-ui/lib';
import { palette } from '@leafygreen-ui/palette';
import { transitionDuration } from '@leafygreen-ui/tokens';
const AtlasBlobPath = (props: HTMLElementProps<'path'>) => (
);
const RealmBlobPath = (props: HTMLElementProps<'path'>) => (
);
const ChartsBlobPath = (props: HTMLElementProps<'path'>) => (
);
const CloudManagerBlobPath = (props: HTMLElementProps<'path'>) => (
);
const Blob = ({ children, ...rest }: HTMLElementProps<'svg'>) => {
const { darkMode } = useDarkMode();
return (
);
};
export const AtlasBlob = React.memo(({ ...props }: HTMLElementProps<'svg'>) => (
));
AtlasBlob.displayName = 'AtlasBlob';
export const RealmBlob = React.memo(({ ...props }: HTMLElementProps<'svg'>) => (
));
RealmBlob.displayName = 'RealmBlob';
export const ChartsBlob = React.memo(
({ ...props }: HTMLElementProps<'svg'>) => (
),
);
ChartsBlob.displayName = 'ChartsBlob';
export const CloudManagerBlob = React.memo(
({ ...props }: HTMLElementProps<'svg'>) => (
),
);
CloudManagerBlob.displayName = 'CloudManagerBlob';