├── .eslintrc.json ├── .gitignore ├── .npmrc ├── .prettierrc.json ├── CHANGELOG.md ├── ISSUE_TEMPLATE.md ├── LICENSE.md ├── README.md ├── genezio.yaml ├── jsconfig.json ├── package.json ├── public ├── apple-icon.png ├── favicon.png ├── index.html ├── manifest.json └── robots.txt └── src ├── App.js ├── assets ├── images │ ├── apple-icon.png │ ├── bg-profile.jpeg │ ├── bg-reset-cover.jpeg │ ├── bg-sign-in-basic.jpeg │ ├── bg-sign-up-cover.jpeg │ ├── bruce-mars.jpg │ ├── favicon.png │ ├── home-decor-1.jpg │ ├── home-decor-2.jpg │ ├── home-decor-3.jpg │ ├── home-decor-4.jpeg │ ├── icons │ │ └── flags │ │ │ ├── AU.png │ │ │ ├── BR.png │ │ │ ├── DE.png │ │ │ ├── GB.png │ │ │ └── US.png │ ├── illustrations │ │ └── pattern-tree.svg │ ├── ivana-square.jpg │ ├── kal-visuals-square.jpg │ ├── logo-ct-dark.png │ ├── logo-ct.png │ ├── logos │ │ ├── gray-logos │ │ │ ├── logo-coinbase.svg │ │ │ ├── logo-nasa.svg │ │ │ ├── logo-netflix.svg │ │ │ ├── logo-pinterest.svg │ │ │ ├── logo-spotify.svg │ │ │ └── logo-vodafone.svg │ │ ├── mastercard.png │ │ └── visa.png │ ├── marie.jpg │ ├── small-logos │ │ ├── bootstrap.svg │ │ ├── creative-tim.svg │ │ ├── devto.svg │ │ ├── github.svg │ │ ├── google-webdev.svg │ │ ├── icon-bulb.svg │ │ ├── logo-asana.svg │ │ ├── logo-atlassian.svg │ │ ├── logo-invision.svg │ │ ├── logo-jira.svg │ │ ├── logo-slack.svg │ │ ├── logo-spotify.svg │ │ └── logo-xd.svg │ ├── team-1.jpg │ ├── team-2.jpg │ ├── team-3.jpg │ ├── team-4.jpg │ └── team-5.jpg ├── theme-dark │ ├── base │ │ ├── borders.js │ │ ├── boxShadows.js │ │ ├── breakpoints.js │ │ ├── colors.js │ │ ├── globals.js │ │ └── typography.js │ ├── components │ │ ├── appBar.js │ │ ├── avatar.js │ │ ├── breadcrumbs.js │ │ ├── button │ │ │ ├── contained.js │ │ │ ├── index.js │ │ │ ├── outlined.js │ │ │ ├── root.js │ │ │ └── text.js │ │ ├── buttonBase.js │ │ ├── card │ │ │ ├── cardContent.js │ │ │ ├── cardMedia.js │ │ │ └── index.js │ │ ├── container.js │ │ ├── dialog │ │ │ ├── dialogActions.js │ │ │ ├── dialogContent.js │ │ │ ├── dialogContentText.js │ │ │ ├── dialogTitle.js │ │ │ └── index.js │ │ ├── divider.js │ │ ├── form │ │ │ ├── autocomplete.js │ │ │ ├── checkbox.js │ │ │ ├── formControlLabel.js │ │ │ ├── formLabel.js │ │ │ ├── input.js │ │ │ ├── inputLabel.js │ │ │ ├── inputOutlined.js │ │ │ ├── radio.js │ │ │ ├── select.js │ │ │ ├── switchButton.js │ │ │ └── textField.js │ │ ├── icon.js │ │ ├── iconButton.js │ │ ├── linearProgress.js │ │ ├── link.js │ │ ├── list │ │ │ ├── index.js │ │ │ ├── listItem.js │ │ │ └── listItemText.js │ │ ├── menu │ │ │ ├── index.js │ │ │ └── menuItem.js │ │ ├── popover.js │ │ ├── sidenav.js │ │ ├── slider.js │ │ ├── stepper │ │ │ ├── index.js │ │ │ ├── step.js │ │ │ ├── stepConnector.js │ │ │ ├── stepIcon.js │ │ │ └── stepLabel.js │ │ ├── svgIcon.js │ │ ├── table │ │ │ ├── tableCell.js │ │ │ ├── tableContainer.js │ │ │ └── tableHead.js │ │ ├── tabs │ │ │ ├── index.js │ │ │ └── tab.js │ │ └── tooltip.js │ ├── functions │ │ ├── boxShadow.js │ │ ├── gradientChartLine.js │ │ ├── hexToRgb.js │ │ ├── linearGradient.js │ │ ├── pxToRem.js │ │ └── rgba.js │ ├── index.js │ └── theme-rtl.js └── theme │ ├── base │ ├── borders.js │ ├── boxShadows.js │ ├── breakpoints.js │ ├── colors.js │ ├── globals.js │ └── typography.js │ ├── components │ ├── appBar.js │ ├── avatar.js │ ├── breadcrumbs.js │ ├── button │ │ ├── contained.js │ │ ├── index.js │ │ ├── outlined.js │ │ ├── root.js │ │ └── text.js │ ├── buttonBase.js │ ├── card │ │ ├── cardContent.js │ │ ├── cardMedia.js │ │ └── index.js │ ├── container.js │ ├── dialog │ │ ├── dialogActions.js │ │ ├── dialogContent.js │ │ ├── dialogContentText.js │ │ ├── dialogTitle.js │ │ └── index.js │ ├── divider.js │ ├── flatpickr.js │ ├── form │ │ ├── autocomplete.js │ │ ├── checkbox.js │ │ ├── formControlLabel.js │ │ ├── formLabel.js │ │ ├── input.js │ │ ├── inputLabel.js │ │ ├── inputOutlined.js │ │ ├── radio.js │ │ ├── select.js │ │ ├── switchButton.js │ │ └── textField.js │ ├── icon.js │ ├── iconButton.js │ ├── linearProgress.js │ ├── link.js │ ├── list │ │ ├── index.js │ │ ├── listItem.js │ │ └── listItemText.js │ ├── menu │ │ ├── index.js │ │ └── menuItem.js │ ├── popover.js │ ├── sidenav.js │ ├── slider.js │ ├── stepper │ │ ├── index.js │ │ ├── step.js │ │ ├── stepConnector.js │ │ ├── stepIcon.js │ │ └── stepLabel.js │ ├── svgIcon.js │ ├── table │ │ ├── tableCell.js │ │ ├── tableContainer.js │ │ └── tableHead.js │ ├── tabs │ │ ├── index.js │ │ └── tab.js │ └── tooltip.js │ ├── functions │ ├── boxShadow.js │ ├── gradientChartLine.js │ ├── hexToRgb.js │ ├── linearGradient.js │ ├── pxToRem.js │ └── rgba.js │ ├── index.js │ └── theme-rtl.js ├── components ├── MDAlert │ ├── MDAlertCloseIcon.js │ ├── MDAlertRoot.js │ └── index.js ├── MDAvatar │ ├── MDAvatarRoot.js │ └── index.js ├── MDBadge │ ├── MDBadgeRoot.js │ └── index.js ├── MDBox │ ├── MDBoxRoot.js │ └── index.js ├── MDButton │ ├── MDButtonRoot.js │ └── index.js ├── MDInput │ ├── MDInputRoot.js │ └── index.js ├── MDPagination │ ├── MDPaginationItemRoot.js │ └── index.js ├── MDProgress │ ├── MDProgressRoot.js │ └── index.js ├── MDSnackbar │ ├── MDSnackbarIconRoot.js │ └── index.js └── MDTypography │ ├── MDTypographyRoot.js │ └── index.js ├── context └── index.js ├── examples ├── Breadcrumbs │ └── index.js ├── Cards │ ├── BlogCards │ │ └── SimpleBlogCard │ │ │ └── index.js │ ├── InfoCards │ │ ├── DefaultInfoCard │ │ │ └── index.js │ │ └── ProfileInfoCard │ │ │ └── index.js │ ├── MasterCard │ │ └── index.js │ ├── ProjectCards │ │ └── DefaultProjectCard │ │ │ └── index.js │ └── StatisticsCards │ │ └── ComplexStatisticsCard │ │ └── index.js ├── Charts │ ├── BarCharts │ │ ├── HorizontalBarChart │ │ │ ├── configs │ │ │ │ └── index.js │ │ │ └── index.js │ │ ├── ReportsBarChart │ │ │ ├── configs │ │ │ │ └── index.js │ │ │ └── index.js │ │ └── VerticalBarChart │ │ │ ├── configs │ │ │ └── index.js │ │ │ └── index.js │ ├── BubbleChart │ │ ├── configs │ │ │ └── index.js │ │ └── index.js │ ├── DoughnutCharts │ │ └── DefaultDoughnutChart │ │ │ ├── configs │ │ │ └── index.js │ │ │ └── index.js │ ├── LineCharts │ │ ├── DefaultLineChart │ │ │ ├── configs │ │ │ │ └── index.js │ │ │ └── index.js │ │ ├── GradientLineChart │ │ │ ├── configs │ │ │ │ └── index.js │ │ │ └── index.js │ │ ├── ProgressLineChart │ │ │ ├── config │ │ │ │ └── index.js │ │ │ └── index.js │ │ └── ReportsLineChart │ │ │ ├── configs │ │ │ └── index.js │ │ │ └── index.js │ ├── MixedChart │ │ ├── configs │ │ │ └── index.js │ │ └── index.js │ ├── PieChart │ │ ├── configs │ │ │ └── index.js │ │ └── index.js │ ├── PolarChart │ │ ├── configs │ │ │ └── index.js │ │ └── index.js │ └── RadarChart │ │ ├── configs │ │ └── index.js │ │ └── index.js ├── Configurator │ ├── ConfiguratorRoot.js │ └── index.js ├── Footer │ └── index.js ├── Items │ └── NotificationItem │ │ ├── index.js │ │ └── styles.js ├── LayoutContainers │ ├── DashboardLayout │ │ └── index.js │ └── PageLayout │ │ └── index.js ├── Lists │ └── ProfilesList │ │ └── index.js ├── Navbars │ ├── DashboardNavbar │ │ ├── index.js │ │ └── styles.js │ └── DefaultNavbar │ │ ├── DefaultNavbarLink.js │ │ ├── DefaultNavbarMobile.js │ │ └── index.js ├── Sidenav │ ├── SidenavCollapse.js │ ├── SidenavRoot.js │ ├── index.js │ └── styles │ │ ├── sidenav.js │ │ └── sidenavCollapse.js ├── Tables │ └── DataTable │ │ ├── DataTableBodyCell.js │ │ ├── DataTableHeadCell.js │ │ └── index.js └── Timeline │ ├── TimelineItem │ ├── index.js │ └── styles.js │ ├── TimelineList │ └── index.js │ └── context │ └── index.js ├── index.js ├── layouts ├── authentication │ ├── components │ │ ├── BasicLayout │ │ │ └── index.js │ │ ├── CoverLayout │ │ │ └── index.js │ │ └── Footer │ │ │ └── index.js │ ├── reset-password │ │ └── cover │ │ │ └── index.js │ ├── sign-in │ │ └── index.js │ └── sign-up │ │ └── index.js ├── billing │ ├── components │ │ ├── Bill │ │ │ └── index.js │ │ ├── BillingInformation │ │ │ └── index.js │ │ ├── Invoice │ │ │ └── index.js │ │ ├── Invoices │ │ │ └── index.js │ │ ├── PaymentMethod │ │ │ └── index.js │ │ ├── Transaction │ │ │ └── index.js │ │ └── Transactions │ │ │ └── index.js │ └── index.js ├── dashboard │ ├── components │ │ ├── OrdersOverview │ │ │ └── index.js │ │ └── Projects │ │ │ ├── data │ │ │ └── index.js │ │ │ └── index.js │ ├── data │ │ ├── reportsBarChartData.js │ │ └── reportsLineChartData.js │ └── index.js ├── notifications │ └── index.js ├── profile │ ├── components │ │ ├── Header │ │ │ └── index.js │ │ └── PlatformSettings │ │ │ └── index.js │ ├── data │ │ └── profilesListData.js │ └── index.js ├── rtl │ ├── components │ │ ├── OrdersOverview │ │ │ └── index.js │ │ └── Projects │ │ │ ├── data │ │ │ └── index.js │ │ │ └── index.js │ ├── data │ │ ├── reportsBarChartData.js │ │ └── reportsLineChartData.js │ └── index.js └── tables │ ├── data │ ├── authorsTableData.js │ └── projectsTableData.js │ └── index.js └── routes.js /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/.npmrc -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/README.md -------------------------------------------------------------------------------- /genezio.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/genezio.yaml -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/jsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/package.json -------------------------------------------------------------------------------- /public/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/public/apple-icon.png -------------------------------------------------------------------------------- /public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/public/favicon.png -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/App.js -------------------------------------------------------------------------------- /src/assets/images/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/images/apple-icon.png -------------------------------------------------------------------------------- /src/assets/images/bg-profile.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/images/bg-profile.jpeg -------------------------------------------------------------------------------- /src/assets/images/bg-reset-cover.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/images/bg-reset-cover.jpeg -------------------------------------------------------------------------------- /src/assets/images/bg-sign-in-basic.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/images/bg-sign-in-basic.jpeg -------------------------------------------------------------------------------- /src/assets/images/bg-sign-up-cover.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/images/bg-sign-up-cover.jpeg -------------------------------------------------------------------------------- /src/assets/images/bruce-mars.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/images/bruce-mars.jpg -------------------------------------------------------------------------------- /src/assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/images/favicon.png -------------------------------------------------------------------------------- /src/assets/images/home-decor-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/images/home-decor-1.jpg -------------------------------------------------------------------------------- /src/assets/images/home-decor-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/images/home-decor-2.jpg -------------------------------------------------------------------------------- /src/assets/images/home-decor-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/images/home-decor-3.jpg -------------------------------------------------------------------------------- /src/assets/images/home-decor-4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/images/home-decor-4.jpeg -------------------------------------------------------------------------------- /src/assets/images/icons/flags/AU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/images/icons/flags/AU.png -------------------------------------------------------------------------------- /src/assets/images/icons/flags/BR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/images/icons/flags/BR.png -------------------------------------------------------------------------------- /src/assets/images/icons/flags/DE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/images/icons/flags/DE.png -------------------------------------------------------------------------------- /src/assets/images/icons/flags/GB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/images/icons/flags/GB.png -------------------------------------------------------------------------------- /src/assets/images/icons/flags/US.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/images/icons/flags/US.png -------------------------------------------------------------------------------- /src/assets/images/illustrations/pattern-tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/images/illustrations/pattern-tree.svg -------------------------------------------------------------------------------- /src/assets/images/ivana-square.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/images/ivana-square.jpg -------------------------------------------------------------------------------- /src/assets/images/kal-visuals-square.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/images/kal-visuals-square.jpg -------------------------------------------------------------------------------- /src/assets/images/logo-ct-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/images/logo-ct-dark.png -------------------------------------------------------------------------------- /src/assets/images/logo-ct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/images/logo-ct.png -------------------------------------------------------------------------------- /src/assets/images/logos/gray-logos/logo-coinbase.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/images/logos/gray-logos/logo-coinbase.svg -------------------------------------------------------------------------------- /src/assets/images/logos/gray-logos/logo-nasa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/images/logos/gray-logos/logo-nasa.svg -------------------------------------------------------------------------------- /src/assets/images/logos/gray-logos/logo-netflix.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/images/logos/gray-logos/logo-netflix.svg -------------------------------------------------------------------------------- /src/assets/images/logos/gray-logos/logo-pinterest.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/images/logos/gray-logos/logo-pinterest.svg -------------------------------------------------------------------------------- /src/assets/images/logos/gray-logos/logo-spotify.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/images/logos/gray-logos/logo-spotify.svg -------------------------------------------------------------------------------- /src/assets/images/logos/gray-logos/logo-vodafone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/images/logos/gray-logos/logo-vodafone.svg -------------------------------------------------------------------------------- /src/assets/images/logos/mastercard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/images/logos/mastercard.png -------------------------------------------------------------------------------- /src/assets/images/logos/visa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/images/logos/visa.png -------------------------------------------------------------------------------- /src/assets/images/marie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/images/marie.jpg -------------------------------------------------------------------------------- /src/assets/images/small-logos/bootstrap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/images/small-logos/bootstrap.svg -------------------------------------------------------------------------------- /src/assets/images/small-logos/creative-tim.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/images/small-logos/creative-tim.svg -------------------------------------------------------------------------------- /src/assets/images/small-logos/devto.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/images/small-logos/devto.svg -------------------------------------------------------------------------------- /src/assets/images/small-logos/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/images/small-logos/github.svg -------------------------------------------------------------------------------- /src/assets/images/small-logos/google-webdev.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/images/small-logos/google-webdev.svg -------------------------------------------------------------------------------- /src/assets/images/small-logos/icon-bulb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/images/small-logos/icon-bulb.svg -------------------------------------------------------------------------------- /src/assets/images/small-logos/logo-asana.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/images/small-logos/logo-asana.svg -------------------------------------------------------------------------------- /src/assets/images/small-logos/logo-atlassian.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/images/small-logos/logo-atlassian.svg -------------------------------------------------------------------------------- /src/assets/images/small-logos/logo-invision.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/images/small-logos/logo-invision.svg -------------------------------------------------------------------------------- /src/assets/images/small-logos/logo-jira.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/images/small-logos/logo-jira.svg -------------------------------------------------------------------------------- /src/assets/images/small-logos/logo-slack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/images/small-logos/logo-slack.svg -------------------------------------------------------------------------------- /src/assets/images/small-logos/logo-spotify.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/images/small-logos/logo-spotify.svg -------------------------------------------------------------------------------- /src/assets/images/small-logos/logo-xd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/images/small-logos/logo-xd.svg -------------------------------------------------------------------------------- /src/assets/images/team-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/images/team-1.jpg -------------------------------------------------------------------------------- /src/assets/images/team-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/images/team-2.jpg -------------------------------------------------------------------------------- /src/assets/images/team-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/images/team-3.jpg -------------------------------------------------------------------------------- /src/assets/images/team-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/images/team-4.jpg -------------------------------------------------------------------------------- /src/assets/images/team-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/images/team-5.jpg -------------------------------------------------------------------------------- /src/assets/theme-dark/base/borders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme-dark/base/borders.js -------------------------------------------------------------------------------- /src/assets/theme-dark/base/boxShadows.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme-dark/base/boxShadows.js -------------------------------------------------------------------------------- /src/assets/theme-dark/base/breakpoints.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme-dark/base/breakpoints.js -------------------------------------------------------------------------------- /src/assets/theme-dark/base/colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme-dark/base/colors.js -------------------------------------------------------------------------------- /src/assets/theme-dark/base/globals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme-dark/base/globals.js -------------------------------------------------------------------------------- /src/assets/theme-dark/base/typography.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme-dark/base/typography.js -------------------------------------------------------------------------------- /src/assets/theme-dark/components/appBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme-dark/components/appBar.js -------------------------------------------------------------------------------- /src/assets/theme-dark/components/avatar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme-dark/components/avatar.js -------------------------------------------------------------------------------- /src/assets/theme-dark/components/breadcrumbs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme-dark/components/breadcrumbs.js -------------------------------------------------------------------------------- /src/assets/theme-dark/components/button/contained.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme-dark/components/button/contained.js -------------------------------------------------------------------------------- /src/assets/theme-dark/components/button/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme-dark/components/button/index.js -------------------------------------------------------------------------------- /src/assets/theme-dark/components/button/outlined.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme-dark/components/button/outlined.js -------------------------------------------------------------------------------- /src/assets/theme-dark/components/button/root.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme-dark/components/button/root.js -------------------------------------------------------------------------------- /src/assets/theme-dark/components/button/text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme-dark/components/button/text.js -------------------------------------------------------------------------------- /src/assets/theme-dark/components/buttonBase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme-dark/components/buttonBase.js -------------------------------------------------------------------------------- /src/assets/theme-dark/components/card/cardContent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme-dark/components/card/cardContent.js -------------------------------------------------------------------------------- /src/assets/theme-dark/components/card/cardMedia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme-dark/components/card/cardMedia.js -------------------------------------------------------------------------------- /src/assets/theme-dark/components/card/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme-dark/components/card/index.js -------------------------------------------------------------------------------- /src/assets/theme-dark/components/container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme-dark/components/container.js -------------------------------------------------------------------------------- /src/assets/theme-dark/components/dialog/dialogActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme-dark/components/dialog/dialogActions.js -------------------------------------------------------------------------------- /src/assets/theme-dark/components/dialog/dialogContent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme-dark/components/dialog/dialogContent.js -------------------------------------------------------------------------------- /src/assets/theme-dark/components/dialog/dialogContentText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme-dark/components/dialog/dialogContentText.js -------------------------------------------------------------------------------- /src/assets/theme-dark/components/dialog/dialogTitle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme-dark/components/dialog/dialogTitle.js -------------------------------------------------------------------------------- /src/assets/theme-dark/components/dialog/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme-dark/components/dialog/index.js -------------------------------------------------------------------------------- /src/assets/theme-dark/components/divider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme-dark/components/divider.js -------------------------------------------------------------------------------- /src/assets/theme-dark/components/form/autocomplete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme-dark/components/form/autocomplete.js -------------------------------------------------------------------------------- /src/assets/theme-dark/components/form/checkbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme-dark/components/form/checkbox.js -------------------------------------------------------------------------------- /src/assets/theme-dark/components/form/formControlLabel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme-dark/components/form/formControlLabel.js -------------------------------------------------------------------------------- /src/assets/theme-dark/components/form/formLabel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme-dark/components/form/formLabel.js -------------------------------------------------------------------------------- /src/assets/theme-dark/components/form/input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme-dark/components/form/input.js -------------------------------------------------------------------------------- /src/assets/theme-dark/components/form/inputLabel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme-dark/components/form/inputLabel.js -------------------------------------------------------------------------------- /src/assets/theme-dark/components/form/inputOutlined.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme-dark/components/form/inputOutlined.js -------------------------------------------------------------------------------- /src/assets/theme-dark/components/form/radio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme-dark/components/form/radio.js -------------------------------------------------------------------------------- /src/assets/theme-dark/components/form/select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme-dark/components/form/select.js -------------------------------------------------------------------------------- /src/assets/theme-dark/components/form/switchButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme-dark/components/form/switchButton.js -------------------------------------------------------------------------------- /src/assets/theme-dark/components/form/textField.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme-dark/components/form/textField.js -------------------------------------------------------------------------------- /src/assets/theme-dark/components/icon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme-dark/components/icon.js -------------------------------------------------------------------------------- /src/assets/theme-dark/components/iconButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme-dark/components/iconButton.js -------------------------------------------------------------------------------- /src/assets/theme-dark/components/linearProgress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme-dark/components/linearProgress.js -------------------------------------------------------------------------------- /src/assets/theme-dark/components/link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme-dark/components/link.js -------------------------------------------------------------------------------- /src/assets/theme-dark/components/list/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme-dark/components/list/index.js -------------------------------------------------------------------------------- /src/assets/theme-dark/components/list/listItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme-dark/components/list/listItem.js -------------------------------------------------------------------------------- /src/assets/theme-dark/components/list/listItemText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme-dark/components/list/listItemText.js -------------------------------------------------------------------------------- /src/assets/theme-dark/components/menu/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme-dark/components/menu/index.js -------------------------------------------------------------------------------- /src/assets/theme-dark/components/menu/menuItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme-dark/components/menu/menuItem.js -------------------------------------------------------------------------------- /src/assets/theme-dark/components/popover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme-dark/components/popover.js -------------------------------------------------------------------------------- /src/assets/theme-dark/components/sidenav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme-dark/components/sidenav.js -------------------------------------------------------------------------------- /src/assets/theme-dark/components/slider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme-dark/components/slider.js -------------------------------------------------------------------------------- /src/assets/theme-dark/components/stepper/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme-dark/components/stepper/index.js -------------------------------------------------------------------------------- /src/assets/theme-dark/components/stepper/step.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme-dark/components/stepper/step.js -------------------------------------------------------------------------------- /src/assets/theme-dark/components/stepper/stepConnector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme-dark/components/stepper/stepConnector.js -------------------------------------------------------------------------------- /src/assets/theme-dark/components/stepper/stepIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme-dark/components/stepper/stepIcon.js -------------------------------------------------------------------------------- /src/assets/theme-dark/components/stepper/stepLabel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme-dark/components/stepper/stepLabel.js -------------------------------------------------------------------------------- /src/assets/theme-dark/components/svgIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme-dark/components/svgIcon.js -------------------------------------------------------------------------------- /src/assets/theme-dark/components/table/tableCell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme-dark/components/table/tableCell.js -------------------------------------------------------------------------------- /src/assets/theme-dark/components/table/tableContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme-dark/components/table/tableContainer.js -------------------------------------------------------------------------------- /src/assets/theme-dark/components/table/tableHead.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme-dark/components/table/tableHead.js -------------------------------------------------------------------------------- /src/assets/theme-dark/components/tabs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme-dark/components/tabs/index.js -------------------------------------------------------------------------------- /src/assets/theme-dark/components/tabs/tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme-dark/components/tabs/tab.js -------------------------------------------------------------------------------- /src/assets/theme-dark/components/tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme-dark/components/tooltip.js -------------------------------------------------------------------------------- /src/assets/theme-dark/functions/boxShadow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme-dark/functions/boxShadow.js -------------------------------------------------------------------------------- /src/assets/theme-dark/functions/gradientChartLine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme-dark/functions/gradientChartLine.js -------------------------------------------------------------------------------- /src/assets/theme-dark/functions/hexToRgb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme-dark/functions/hexToRgb.js -------------------------------------------------------------------------------- /src/assets/theme-dark/functions/linearGradient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme-dark/functions/linearGradient.js -------------------------------------------------------------------------------- /src/assets/theme-dark/functions/pxToRem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme-dark/functions/pxToRem.js -------------------------------------------------------------------------------- /src/assets/theme-dark/functions/rgba.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme-dark/functions/rgba.js -------------------------------------------------------------------------------- /src/assets/theme-dark/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme-dark/index.js -------------------------------------------------------------------------------- /src/assets/theme-dark/theme-rtl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme-dark/theme-rtl.js -------------------------------------------------------------------------------- /src/assets/theme/base/borders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme/base/borders.js -------------------------------------------------------------------------------- /src/assets/theme/base/boxShadows.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme/base/boxShadows.js -------------------------------------------------------------------------------- /src/assets/theme/base/breakpoints.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme/base/breakpoints.js -------------------------------------------------------------------------------- /src/assets/theme/base/colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme/base/colors.js -------------------------------------------------------------------------------- /src/assets/theme/base/globals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme/base/globals.js -------------------------------------------------------------------------------- /src/assets/theme/base/typography.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme/base/typography.js -------------------------------------------------------------------------------- /src/assets/theme/components/appBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme/components/appBar.js -------------------------------------------------------------------------------- /src/assets/theme/components/avatar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme/components/avatar.js -------------------------------------------------------------------------------- /src/assets/theme/components/breadcrumbs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme/components/breadcrumbs.js -------------------------------------------------------------------------------- /src/assets/theme/components/button/contained.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme/components/button/contained.js -------------------------------------------------------------------------------- /src/assets/theme/components/button/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme/components/button/index.js -------------------------------------------------------------------------------- /src/assets/theme/components/button/outlined.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme/components/button/outlined.js -------------------------------------------------------------------------------- /src/assets/theme/components/button/root.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme/components/button/root.js -------------------------------------------------------------------------------- /src/assets/theme/components/button/text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme/components/button/text.js -------------------------------------------------------------------------------- /src/assets/theme/components/buttonBase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme/components/buttonBase.js -------------------------------------------------------------------------------- /src/assets/theme/components/card/cardContent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme/components/card/cardContent.js -------------------------------------------------------------------------------- /src/assets/theme/components/card/cardMedia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme/components/card/cardMedia.js -------------------------------------------------------------------------------- /src/assets/theme/components/card/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme/components/card/index.js -------------------------------------------------------------------------------- /src/assets/theme/components/container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme/components/container.js -------------------------------------------------------------------------------- /src/assets/theme/components/dialog/dialogActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme/components/dialog/dialogActions.js -------------------------------------------------------------------------------- /src/assets/theme/components/dialog/dialogContent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme/components/dialog/dialogContent.js -------------------------------------------------------------------------------- /src/assets/theme/components/dialog/dialogContentText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme/components/dialog/dialogContentText.js -------------------------------------------------------------------------------- /src/assets/theme/components/dialog/dialogTitle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme/components/dialog/dialogTitle.js -------------------------------------------------------------------------------- /src/assets/theme/components/dialog/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme/components/dialog/index.js -------------------------------------------------------------------------------- /src/assets/theme/components/divider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme/components/divider.js -------------------------------------------------------------------------------- /src/assets/theme/components/flatpickr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme/components/flatpickr.js -------------------------------------------------------------------------------- /src/assets/theme/components/form/autocomplete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme/components/form/autocomplete.js -------------------------------------------------------------------------------- /src/assets/theme/components/form/checkbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme/components/form/checkbox.js -------------------------------------------------------------------------------- /src/assets/theme/components/form/formControlLabel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme/components/form/formControlLabel.js -------------------------------------------------------------------------------- /src/assets/theme/components/form/formLabel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme/components/form/formLabel.js -------------------------------------------------------------------------------- /src/assets/theme/components/form/input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme/components/form/input.js -------------------------------------------------------------------------------- /src/assets/theme/components/form/inputLabel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme/components/form/inputLabel.js -------------------------------------------------------------------------------- /src/assets/theme/components/form/inputOutlined.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme/components/form/inputOutlined.js -------------------------------------------------------------------------------- /src/assets/theme/components/form/radio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme/components/form/radio.js -------------------------------------------------------------------------------- /src/assets/theme/components/form/select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme/components/form/select.js -------------------------------------------------------------------------------- /src/assets/theme/components/form/switchButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme/components/form/switchButton.js -------------------------------------------------------------------------------- /src/assets/theme/components/form/textField.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme/components/form/textField.js -------------------------------------------------------------------------------- /src/assets/theme/components/icon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme/components/icon.js -------------------------------------------------------------------------------- /src/assets/theme/components/iconButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme/components/iconButton.js -------------------------------------------------------------------------------- /src/assets/theme/components/linearProgress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme/components/linearProgress.js -------------------------------------------------------------------------------- /src/assets/theme/components/link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme/components/link.js -------------------------------------------------------------------------------- /src/assets/theme/components/list/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme/components/list/index.js -------------------------------------------------------------------------------- /src/assets/theme/components/list/listItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme/components/list/listItem.js -------------------------------------------------------------------------------- /src/assets/theme/components/list/listItemText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme/components/list/listItemText.js -------------------------------------------------------------------------------- /src/assets/theme/components/menu/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme/components/menu/index.js -------------------------------------------------------------------------------- /src/assets/theme/components/menu/menuItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme/components/menu/menuItem.js -------------------------------------------------------------------------------- /src/assets/theme/components/popover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme/components/popover.js -------------------------------------------------------------------------------- /src/assets/theme/components/sidenav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme/components/sidenav.js -------------------------------------------------------------------------------- /src/assets/theme/components/slider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme/components/slider.js -------------------------------------------------------------------------------- /src/assets/theme/components/stepper/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme/components/stepper/index.js -------------------------------------------------------------------------------- /src/assets/theme/components/stepper/step.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme/components/stepper/step.js -------------------------------------------------------------------------------- /src/assets/theme/components/stepper/stepConnector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme/components/stepper/stepConnector.js -------------------------------------------------------------------------------- /src/assets/theme/components/stepper/stepIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme/components/stepper/stepIcon.js -------------------------------------------------------------------------------- /src/assets/theme/components/stepper/stepLabel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme/components/stepper/stepLabel.js -------------------------------------------------------------------------------- /src/assets/theme/components/svgIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme/components/svgIcon.js -------------------------------------------------------------------------------- /src/assets/theme/components/table/tableCell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme/components/table/tableCell.js -------------------------------------------------------------------------------- /src/assets/theme/components/table/tableContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme/components/table/tableContainer.js -------------------------------------------------------------------------------- /src/assets/theme/components/table/tableHead.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme/components/table/tableHead.js -------------------------------------------------------------------------------- /src/assets/theme/components/tabs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme/components/tabs/index.js -------------------------------------------------------------------------------- /src/assets/theme/components/tabs/tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme/components/tabs/tab.js -------------------------------------------------------------------------------- /src/assets/theme/components/tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme/components/tooltip.js -------------------------------------------------------------------------------- /src/assets/theme/functions/boxShadow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme/functions/boxShadow.js -------------------------------------------------------------------------------- /src/assets/theme/functions/gradientChartLine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme/functions/gradientChartLine.js -------------------------------------------------------------------------------- /src/assets/theme/functions/hexToRgb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme/functions/hexToRgb.js -------------------------------------------------------------------------------- /src/assets/theme/functions/linearGradient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme/functions/linearGradient.js -------------------------------------------------------------------------------- /src/assets/theme/functions/pxToRem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme/functions/pxToRem.js -------------------------------------------------------------------------------- /src/assets/theme/functions/rgba.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme/functions/rgba.js -------------------------------------------------------------------------------- /src/assets/theme/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme/index.js -------------------------------------------------------------------------------- /src/assets/theme/theme-rtl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/assets/theme/theme-rtl.js -------------------------------------------------------------------------------- /src/components/MDAlert/MDAlertCloseIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/components/MDAlert/MDAlertCloseIcon.js -------------------------------------------------------------------------------- /src/components/MDAlert/MDAlertRoot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/components/MDAlert/MDAlertRoot.js -------------------------------------------------------------------------------- /src/components/MDAlert/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/components/MDAlert/index.js -------------------------------------------------------------------------------- /src/components/MDAvatar/MDAvatarRoot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/components/MDAvatar/MDAvatarRoot.js -------------------------------------------------------------------------------- /src/components/MDAvatar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/components/MDAvatar/index.js -------------------------------------------------------------------------------- /src/components/MDBadge/MDBadgeRoot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/components/MDBadge/MDBadgeRoot.js -------------------------------------------------------------------------------- /src/components/MDBadge/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/components/MDBadge/index.js -------------------------------------------------------------------------------- /src/components/MDBox/MDBoxRoot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/components/MDBox/MDBoxRoot.js -------------------------------------------------------------------------------- /src/components/MDBox/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/components/MDBox/index.js -------------------------------------------------------------------------------- /src/components/MDButton/MDButtonRoot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/components/MDButton/MDButtonRoot.js -------------------------------------------------------------------------------- /src/components/MDButton/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/components/MDButton/index.js -------------------------------------------------------------------------------- /src/components/MDInput/MDInputRoot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/components/MDInput/MDInputRoot.js -------------------------------------------------------------------------------- /src/components/MDInput/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/components/MDInput/index.js -------------------------------------------------------------------------------- /src/components/MDPagination/MDPaginationItemRoot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/components/MDPagination/MDPaginationItemRoot.js -------------------------------------------------------------------------------- /src/components/MDPagination/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/components/MDPagination/index.js -------------------------------------------------------------------------------- /src/components/MDProgress/MDProgressRoot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/components/MDProgress/MDProgressRoot.js -------------------------------------------------------------------------------- /src/components/MDProgress/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/components/MDProgress/index.js -------------------------------------------------------------------------------- /src/components/MDSnackbar/MDSnackbarIconRoot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/components/MDSnackbar/MDSnackbarIconRoot.js -------------------------------------------------------------------------------- /src/components/MDSnackbar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/components/MDSnackbar/index.js -------------------------------------------------------------------------------- /src/components/MDTypography/MDTypographyRoot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/components/MDTypography/MDTypographyRoot.js -------------------------------------------------------------------------------- /src/components/MDTypography/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/components/MDTypography/index.js -------------------------------------------------------------------------------- /src/context/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/context/index.js -------------------------------------------------------------------------------- /src/examples/Breadcrumbs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/examples/Breadcrumbs/index.js -------------------------------------------------------------------------------- /src/examples/Cards/BlogCards/SimpleBlogCard/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/examples/Cards/BlogCards/SimpleBlogCard/index.js -------------------------------------------------------------------------------- /src/examples/Cards/InfoCards/DefaultInfoCard/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/examples/Cards/InfoCards/DefaultInfoCard/index.js -------------------------------------------------------------------------------- /src/examples/Cards/InfoCards/ProfileInfoCard/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/examples/Cards/InfoCards/ProfileInfoCard/index.js -------------------------------------------------------------------------------- /src/examples/Cards/MasterCard/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/examples/Cards/MasterCard/index.js -------------------------------------------------------------------------------- /src/examples/Cards/ProjectCards/DefaultProjectCard/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/examples/Cards/ProjectCards/DefaultProjectCard/index.js -------------------------------------------------------------------------------- /src/examples/Cards/StatisticsCards/ComplexStatisticsCard/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/examples/Cards/StatisticsCards/ComplexStatisticsCard/index.js -------------------------------------------------------------------------------- /src/examples/Charts/BarCharts/HorizontalBarChart/configs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/examples/Charts/BarCharts/HorizontalBarChart/configs/index.js -------------------------------------------------------------------------------- /src/examples/Charts/BarCharts/HorizontalBarChart/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/examples/Charts/BarCharts/HorizontalBarChart/index.js -------------------------------------------------------------------------------- /src/examples/Charts/BarCharts/ReportsBarChart/configs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/examples/Charts/BarCharts/ReportsBarChart/configs/index.js -------------------------------------------------------------------------------- /src/examples/Charts/BarCharts/ReportsBarChart/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/examples/Charts/BarCharts/ReportsBarChart/index.js -------------------------------------------------------------------------------- /src/examples/Charts/BarCharts/VerticalBarChart/configs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/examples/Charts/BarCharts/VerticalBarChart/configs/index.js -------------------------------------------------------------------------------- /src/examples/Charts/BarCharts/VerticalBarChart/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/examples/Charts/BarCharts/VerticalBarChart/index.js -------------------------------------------------------------------------------- /src/examples/Charts/BubbleChart/configs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/examples/Charts/BubbleChart/configs/index.js -------------------------------------------------------------------------------- /src/examples/Charts/BubbleChart/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/examples/Charts/BubbleChart/index.js -------------------------------------------------------------------------------- /src/examples/Charts/DoughnutCharts/DefaultDoughnutChart/configs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/examples/Charts/DoughnutCharts/DefaultDoughnutChart/configs/index.js -------------------------------------------------------------------------------- /src/examples/Charts/DoughnutCharts/DefaultDoughnutChart/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/examples/Charts/DoughnutCharts/DefaultDoughnutChart/index.js -------------------------------------------------------------------------------- /src/examples/Charts/LineCharts/DefaultLineChart/configs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/examples/Charts/LineCharts/DefaultLineChart/configs/index.js -------------------------------------------------------------------------------- /src/examples/Charts/LineCharts/DefaultLineChart/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/examples/Charts/LineCharts/DefaultLineChart/index.js -------------------------------------------------------------------------------- /src/examples/Charts/LineCharts/GradientLineChart/configs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/examples/Charts/LineCharts/GradientLineChart/configs/index.js -------------------------------------------------------------------------------- /src/examples/Charts/LineCharts/GradientLineChart/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/examples/Charts/LineCharts/GradientLineChart/index.js -------------------------------------------------------------------------------- /src/examples/Charts/LineCharts/ProgressLineChart/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/examples/Charts/LineCharts/ProgressLineChart/config/index.js -------------------------------------------------------------------------------- /src/examples/Charts/LineCharts/ProgressLineChart/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/examples/Charts/LineCharts/ProgressLineChart/index.js -------------------------------------------------------------------------------- /src/examples/Charts/LineCharts/ReportsLineChart/configs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/examples/Charts/LineCharts/ReportsLineChart/configs/index.js -------------------------------------------------------------------------------- /src/examples/Charts/LineCharts/ReportsLineChart/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/examples/Charts/LineCharts/ReportsLineChart/index.js -------------------------------------------------------------------------------- /src/examples/Charts/MixedChart/configs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/examples/Charts/MixedChart/configs/index.js -------------------------------------------------------------------------------- /src/examples/Charts/MixedChart/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/examples/Charts/MixedChart/index.js -------------------------------------------------------------------------------- /src/examples/Charts/PieChart/configs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/examples/Charts/PieChart/configs/index.js -------------------------------------------------------------------------------- /src/examples/Charts/PieChart/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/examples/Charts/PieChart/index.js -------------------------------------------------------------------------------- /src/examples/Charts/PolarChart/configs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/examples/Charts/PolarChart/configs/index.js -------------------------------------------------------------------------------- /src/examples/Charts/PolarChart/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/examples/Charts/PolarChart/index.js -------------------------------------------------------------------------------- /src/examples/Charts/RadarChart/configs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/examples/Charts/RadarChart/configs/index.js -------------------------------------------------------------------------------- /src/examples/Charts/RadarChart/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/examples/Charts/RadarChart/index.js -------------------------------------------------------------------------------- /src/examples/Configurator/ConfiguratorRoot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/examples/Configurator/ConfiguratorRoot.js -------------------------------------------------------------------------------- /src/examples/Configurator/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/examples/Configurator/index.js -------------------------------------------------------------------------------- /src/examples/Footer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/examples/Footer/index.js -------------------------------------------------------------------------------- /src/examples/Items/NotificationItem/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/examples/Items/NotificationItem/index.js -------------------------------------------------------------------------------- /src/examples/Items/NotificationItem/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/examples/Items/NotificationItem/styles.js -------------------------------------------------------------------------------- /src/examples/LayoutContainers/DashboardLayout/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/examples/LayoutContainers/DashboardLayout/index.js -------------------------------------------------------------------------------- /src/examples/LayoutContainers/PageLayout/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/examples/LayoutContainers/PageLayout/index.js -------------------------------------------------------------------------------- /src/examples/Lists/ProfilesList/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/examples/Lists/ProfilesList/index.js -------------------------------------------------------------------------------- /src/examples/Navbars/DashboardNavbar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/examples/Navbars/DashboardNavbar/index.js -------------------------------------------------------------------------------- /src/examples/Navbars/DashboardNavbar/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/examples/Navbars/DashboardNavbar/styles.js -------------------------------------------------------------------------------- /src/examples/Navbars/DefaultNavbar/DefaultNavbarLink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/examples/Navbars/DefaultNavbar/DefaultNavbarLink.js -------------------------------------------------------------------------------- /src/examples/Navbars/DefaultNavbar/DefaultNavbarMobile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/examples/Navbars/DefaultNavbar/DefaultNavbarMobile.js -------------------------------------------------------------------------------- /src/examples/Navbars/DefaultNavbar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/examples/Navbars/DefaultNavbar/index.js -------------------------------------------------------------------------------- /src/examples/Sidenav/SidenavCollapse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/examples/Sidenav/SidenavCollapse.js -------------------------------------------------------------------------------- /src/examples/Sidenav/SidenavRoot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/examples/Sidenav/SidenavRoot.js -------------------------------------------------------------------------------- /src/examples/Sidenav/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/examples/Sidenav/index.js -------------------------------------------------------------------------------- /src/examples/Sidenav/styles/sidenav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/examples/Sidenav/styles/sidenav.js -------------------------------------------------------------------------------- /src/examples/Sidenav/styles/sidenavCollapse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/examples/Sidenav/styles/sidenavCollapse.js -------------------------------------------------------------------------------- /src/examples/Tables/DataTable/DataTableBodyCell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/examples/Tables/DataTable/DataTableBodyCell.js -------------------------------------------------------------------------------- /src/examples/Tables/DataTable/DataTableHeadCell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/examples/Tables/DataTable/DataTableHeadCell.js -------------------------------------------------------------------------------- /src/examples/Tables/DataTable/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/examples/Tables/DataTable/index.js -------------------------------------------------------------------------------- /src/examples/Timeline/TimelineItem/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/examples/Timeline/TimelineItem/index.js -------------------------------------------------------------------------------- /src/examples/Timeline/TimelineItem/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/examples/Timeline/TimelineItem/styles.js -------------------------------------------------------------------------------- /src/examples/Timeline/TimelineList/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/examples/Timeline/TimelineList/index.js -------------------------------------------------------------------------------- /src/examples/Timeline/context/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/examples/Timeline/context/index.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/index.js -------------------------------------------------------------------------------- /src/layouts/authentication/components/BasicLayout/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/layouts/authentication/components/BasicLayout/index.js -------------------------------------------------------------------------------- /src/layouts/authentication/components/CoverLayout/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/layouts/authentication/components/CoverLayout/index.js -------------------------------------------------------------------------------- /src/layouts/authentication/components/Footer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/layouts/authentication/components/Footer/index.js -------------------------------------------------------------------------------- /src/layouts/authentication/reset-password/cover/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/layouts/authentication/reset-password/cover/index.js -------------------------------------------------------------------------------- /src/layouts/authentication/sign-in/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/layouts/authentication/sign-in/index.js -------------------------------------------------------------------------------- /src/layouts/authentication/sign-up/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/layouts/authentication/sign-up/index.js -------------------------------------------------------------------------------- /src/layouts/billing/components/Bill/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/layouts/billing/components/Bill/index.js -------------------------------------------------------------------------------- /src/layouts/billing/components/BillingInformation/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/layouts/billing/components/BillingInformation/index.js -------------------------------------------------------------------------------- /src/layouts/billing/components/Invoice/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/layouts/billing/components/Invoice/index.js -------------------------------------------------------------------------------- /src/layouts/billing/components/Invoices/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/layouts/billing/components/Invoices/index.js -------------------------------------------------------------------------------- /src/layouts/billing/components/PaymentMethod/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/layouts/billing/components/PaymentMethod/index.js -------------------------------------------------------------------------------- /src/layouts/billing/components/Transaction/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/layouts/billing/components/Transaction/index.js -------------------------------------------------------------------------------- /src/layouts/billing/components/Transactions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/layouts/billing/components/Transactions/index.js -------------------------------------------------------------------------------- /src/layouts/billing/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/layouts/billing/index.js -------------------------------------------------------------------------------- /src/layouts/dashboard/components/OrdersOverview/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/layouts/dashboard/components/OrdersOverview/index.js -------------------------------------------------------------------------------- /src/layouts/dashboard/components/Projects/data/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/layouts/dashboard/components/Projects/data/index.js -------------------------------------------------------------------------------- /src/layouts/dashboard/components/Projects/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/layouts/dashboard/components/Projects/index.js -------------------------------------------------------------------------------- /src/layouts/dashboard/data/reportsBarChartData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/layouts/dashboard/data/reportsBarChartData.js -------------------------------------------------------------------------------- /src/layouts/dashboard/data/reportsLineChartData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/layouts/dashboard/data/reportsLineChartData.js -------------------------------------------------------------------------------- /src/layouts/dashboard/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/layouts/dashboard/index.js -------------------------------------------------------------------------------- /src/layouts/notifications/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/layouts/notifications/index.js -------------------------------------------------------------------------------- /src/layouts/profile/components/Header/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/layouts/profile/components/Header/index.js -------------------------------------------------------------------------------- /src/layouts/profile/components/PlatformSettings/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/layouts/profile/components/PlatformSettings/index.js -------------------------------------------------------------------------------- /src/layouts/profile/data/profilesListData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/layouts/profile/data/profilesListData.js -------------------------------------------------------------------------------- /src/layouts/profile/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/layouts/profile/index.js -------------------------------------------------------------------------------- /src/layouts/rtl/components/OrdersOverview/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/layouts/rtl/components/OrdersOverview/index.js -------------------------------------------------------------------------------- /src/layouts/rtl/components/Projects/data/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/layouts/rtl/components/Projects/data/index.js -------------------------------------------------------------------------------- /src/layouts/rtl/components/Projects/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/layouts/rtl/components/Projects/index.js -------------------------------------------------------------------------------- /src/layouts/rtl/data/reportsBarChartData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/layouts/rtl/data/reportsBarChartData.js -------------------------------------------------------------------------------- /src/layouts/rtl/data/reportsLineChartData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/layouts/rtl/data/reportsLineChartData.js -------------------------------------------------------------------------------- /src/layouts/rtl/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/layouts/rtl/index.js -------------------------------------------------------------------------------- /src/layouts/tables/data/authorsTableData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/layouts/tables/data/authorsTableData.js -------------------------------------------------------------------------------- /src/layouts/tables/data/projectsTableData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/layouts/tables/data/projectsTableData.js -------------------------------------------------------------------------------- /src/layouts/tables/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/layouts/tables/index.js -------------------------------------------------------------------------------- /src/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/material-dashboard-react/HEAD/src/routes.js --------------------------------------------------------------------------------