Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
|
- // material-ui
- import { styled } from '@mui/material/styles';
-
- // project import
- import ComponentSkeleton from './ComponentSkeleton';
- import MainCard from 'components/MainCard';
-
- // styles
- const IFrameWrapper = styled('iframe')(() => ({
- height: 'calc(100vh - 210px)',
- border: 'none'
- }));
-
- // ============================|| ANT ICONS ||============================ //
-
- const AntIcons = () => (
- <ComponentSkeleton>
- <MainCard title="Ant Icons">
- <IFrameWrapper title="Ant Icon" width="100%" src="https://ant.design/components/icon/" />
- </MainCard>
- </ComponentSkeleton>
- );
-
- export default AntIcons;
|