PluginProbe
SureForms – Contact Form Builder, AI Forms, Payment Form, Survey & Quiz / 0.0.3
SureForms – Contact Form Builder, AI Forms, Payment Form, Survey & Quiz v0.0.3
2.12.6 2.12.5 2.12.4 2.12.3 2.12.2 2.12.1 2.12.0 2.11.1 2.11.0 2.10.1 2.10.0 2.9.1 2.9.0 2.8.2 2.8.1 2.7.0 2.7.1 2.8.0 trunk 0.0.10 0.0.11 0.0.12 0.0.13 0.0.2 0.0.3 All 96 releases
sureforms / src / admin / dashboard / EntriesView.js
EntriesView.js
45 lines 943 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /** @jsx jsx */
2 import { css, jsx } from '@emotion/react';
3 import { ScCard, ScDashboardModule } from '@surecart/components-react';
4 import ChartSummary from './charts/ChartSummary';
5 export default ( {} ) => {
6 return (
7 <ScDashboardModule
8 css={ css`
9 width: calc(65% - 2em );
10 margin-top:2em;
11 @media screen and ( max-width: 1260px ) {
12 width: 100%;
13 }
14 .dashboard-module{
15 display:none;
16 }
17 ` }
18 style={ { '--sc-flex-column-gap': '1em' } }
19 >
20 <ScCard
21 style={ { '--sc-card-padding': 'var(--sc-spacing-xx-large)' } }
22 >
23 <article
24 css={ css`
25 display: flex;
26 align-items:center;
27 ` }>
28 Entries
29 <span
30 css={ css`
31 width: 16px;
32 height: 3px;
33 border-radius: 2px;
34 background: #F06434;
35 margin-left: 8px;
36 margin-right:20px;
37 ` }>
38 </span>
39 </article>
40 <ChartSummary loading={ false } className="" />
41 </ScCard>
42 </ScDashboardModule>
43 );
44 };
45