Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 

25 wiersze
616 B

  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;