diff --git a/docs/public/static/branding/mui-x/sparkline-light1.png b/docs/public/static/branding/mui-x/sparkline-light1.png deleted file mode 100644 index 19bb11632260c3..00000000000000 Binary files a/docs/public/static/branding/mui-x/sparkline-light1.png and /dev/null differ diff --git a/docs/public/static/branding/mui-x/sparkline-light2.png b/docs/public/static/branding/mui-x/sparkline-light2.png deleted file mode 100644 index 381fc8fa041a68..00000000000000 Binary files a/docs/public/static/branding/mui-x/sparkline-light2.png and /dev/null differ diff --git a/docs/src/components/productX/XSparklineDemo.tsx b/docs/src/components/productX/XSparklineDemo.tsx deleted file mode 100644 index 10fa632bf81984..00000000000000 --- a/docs/src/components/productX/XSparklineDemo.tsx +++ /dev/null @@ -1,72 +0,0 @@ -import * as React from 'react'; -import Box from '@mui/material/Box'; -import Grid from '@mui/material/Grid'; -import Typography from '@mui/material/Typography'; -import Chip from '@mui/material/Chip'; -import { styled } from '@mui/material/styles'; -import { shouldForwardProp } from '@mui/system'; -import EmailSubscribe from 'docs/src/components/footer/EmailSubscribe'; -import Frame from 'docs/src/components/action/Frame'; - -const AspectRatioImage = styled('div', { - shouldForwardProp: (prop) => shouldForwardProp(prop) && prop !== 'src' && prop !== 'ratio', -})<{ ratio: number; src: string }>(({ src, ratio, theme }) => ({ - height: 0, - backgroundImage: `url(${src})`, - backgroundRepeat: 'no-repeat', - backgroundSize: 'contain', - paddingBottom: `${(1 / ratio) * 100}%`, - margin: 'auto', - ...theme.applyDarkStyles({ - backgroundImage: `url(${src.replace('-light', '-dark')})`, - }), -})); - -export default function XSparklineDemo() { - return ( - - - - - - - - - - - - - - - - - - - - Coming soon! - - - - - Subscribe to our newsletter to get first-hand info about the development and release of - new components. - - - - - - ); -}