import * as React from 'react'; import { alpha } from '@mui/material/styles'; import Box from '@mui/material/Box'; import Grid from '@mui/material/Grid'; import List from '@mui/material/List'; import ListItem from '@mui/material/ListItem'; import Typography from '@mui/material/Typography'; import StyleRoundedIcon from '@mui/icons-material/StyleRounded'; import { GlowingIconContainer } from '@mui/docs/InfoCard'; import GetStartedButtons from 'docs/src/components/home/GetStartedButtons'; import Section from 'docs/src/layouts/Section'; import SectionHeadline from 'docs/src/components/typography/SectionHeadline'; import GradientText from 'docs/src/components/typography/GradientText'; import { Link } from '@mui/docs/Link'; import ROUTES from 'docs/src/route'; interface MaterialEndProps { noFaq?: boolean; } export default function MaterialEnd({ noFaq }: MaterialEndProps) { return (
`linear-gradient(180deg, ${(theme.vars || theme).palette.primaryDark[900]} 50%, ${alpha(theme.palette.primary[800], 0.2)} 100%), ${ (theme.vars || theme).palette.primaryDark[900] }`, }} > {noFaq ? ( Join our global community } description={ Material UI wouldn't be possible without our global community of contributors. Join us today to get help when you need it, and lend a hand when you can. } /> ) : ( Join our global community } description={ Material UI wouldn't be possible without our global community of contributors. Join us today to get help when you need it, and lend a hand when you can. } /> li': { alignItems: 'flex-start' } }}> } />
Does it support Material Design 3? Material UI currently adopts Material Design 2. You can follow{' '} this GitHub issue {' '} for future design-related updates.
)}
); }