Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

2 лет назад
123456789101112131415161718192021222324
  1. // material-ui
  2. import { styled } from '@mui/material/styles';
  3. // project import
  4. import ComponentSkeleton from './ComponentSkeleton';
  5. import MainCard from 'components/MainCard';
  6. // styles
  7. const IFrameWrapper = styled('iframe')(() => ({
  8. height: 'calc(100vh - 210px)',
  9. border: 'none'
  10. }));
  11. // ============================|| ANT ICONS ||============================ //
  12. const AntIcons = () => (
  13. <ComponentSkeleton>
  14. <MainCard title="Ant Icons">
  15. <IFrameWrapper title="Ant Icon" width="100%" src="https://ant.design/components/icon/" />
  16. </MainCard>
  17. </ComponentSkeleton>
  18. );
  19. export default AntIcons;