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.
|
- // 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;
|