@gpichot/spectacle-deck 1.1.7 → 1.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (80) hide show
  1. package/.turbo/turbo-build.log +4 -0
  2. package/.turbo/turbo-dev.log +4 -0
  3. package/dist/SlideWrapper.d.ts +7 -0
  4. package/dist/colors.d.ts +14 -0
  5. package/dist/components/QRCode.d.ts +6 -0
  6. package/dist/components/Timeline.styled.d.ts +7 -0
  7. package/{components → dist/components}/map.d.ts +2 -0
  8. package/dist/components/styled.d.ts +12 -0
  9. package/dist/context.d.ts +11 -0
  10. package/{index.cjs → dist/index.cjs} +321 -200
  11. package/{index.d.ts → dist/index.d.ts} +30 -7
  12. package/{index.mjs → dist/index.mjs} +312 -191
  13. package/{layouts → dist/layouts}/BaseLayout.d.ts +1 -1
  14. package/dist/layouts/SectionLayout.d.ts +2 -0
  15. package/{layouts → dist/layouts}/index.d.ts +1 -1
  16. package/dist/layouts/styled.d.ts +2 -0
  17. package/package.json +29 -23
  18. package/publish.sh +7 -0
  19. package/scripts/bundle.ts +84 -0
  20. package/src/SlideWrapper.tsx +25 -0
  21. package/src/colors.ts +42 -0
  22. package/src/components/CodeStepper/CodeStepper.tsx +228 -0
  23. package/src/components/CodeStepper/code-directives.test.ts +58 -0
  24. package/src/components/CodeStepper/code-directives.ts +129 -0
  25. package/src/components/DocumentationItem.tsx +85 -0
  26. package/src/components/FilePane.tsx +18 -0
  27. package/src/components/HorizontalList.tsx +141 -0
  28. package/src/components/IconBox.tsx +31 -0
  29. package/src/components/Image.tsx +39 -0
  30. package/src/components/ItemsColumn.tsx +60 -0
  31. package/src/components/QRCode.tsx +55 -0
  32. package/src/components/Timeline.styled.tsx +24 -0
  33. package/src/components/Timeline.tsx +159 -0
  34. package/src/components/map.tsx +128 -0
  35. package/src/components/styled.tsx +73 -0
  36. package/src/context.tsx +33 -0
  37. package/src/front.png +0 -0
  38. package/src/index.tsx +127 -0
  39. package/src/layouts/BaseLayout.tsx +52 -0
  40. package/src/layouts/CenteredLayout.tsx +40 -0
  41. package/src/layouts/Default3Layout.tsx +159 -0
  42. package/src/layouts/MainSectionLayout.tsx +31 -0
  43. package/src/layouts/QuoteLayout.tsx +107 -0
  44. package/src/layouts/SectionLayout.tsx +14 -0
  45. package/src/layouts/SideCodeLayout.tsx +44 -0
  46. package/src/layouts/SideImageLayout.tsx +82 -0
  47. package/src/layouts/SideLayout.tsx +31 -0
  48. package/src/layouts/columns.tsx +56 -0
  49. package/src/layouts/index.tsx +19 -0
  50. package/src/layouts/styled.ts +7 -0
  51. package/src/layouts/utils.ts +66 -0
  52. package/src/node.d.ts +5 -0
  53. package/src/style.d.ts +10 -0
  54. package/src/template.tsx +25 -0
  55. package/src/theme.ts +28 -0
  56. package/tsconfig.json +29 -0
  57. package/components/Timeline.styled.d.ts +0 -7
  58. package/components/styled.d.ts +0 -12
  59. package/layouts/SectionLayout.d.ts +0 -2
  60. package/layouts/styled.d.ts +0 -2
  61. /package/{components → dist/components}/CodeStepper/CodeStepper.d.ts +0 -0
  62. /package/{components → dist/components}/CodeStepper/code-directives.d.ts +0 -0
  63. /package/{components → dist/components}/DocumentationItem.d.ts +0 -0
  64. /package/{components → dist/components}/FilePane.d.ts +0 -0
  65. /package/{components → dist/components}/HorizontalList.d.ts +0 -0
  66. /package/{components → dist/components}/IconBox.d.ts +0 -0
  67. /package/{components → dist/components}/Image.d.ts +0 -0
  68. /package/{components → dist/components}/ItemsColumn.d.ts +0 -0
  69. /package/{components → dist/components}/Timeline.d.ts +0 -0
  70. /package/{layouts → dist/layouts}/CenteredLayout.d.ts +0 -0
  71. /package/{layouts → dist/layouts}/Default3Layout.d.ts +0 -0
  72. /package/{layouts → dist/layouts}/MainSectionLayout.d.ts +0 -0
  73. /package/{layouts → dist/layouts}/QuoteLayout.d.ts +0 -0
  74. /package/{layouts → dist/layouts}/SideCodeLayout.d.ts +0 -0
  75. /package/{layouts → dist/layouts}/SideImageLayout.d.ts +0 -0
  76. /package/{layouts → dist/layouts}/SideLayout.d.ts +0 -0
  77. /package/{layouts → dist/layouts}/columns.d.ts +0 -0
  78. /package/{layouts → dist/layouts}/utils.d.ts +0 -0
  79. /package/{template.d.ts → dist/template.d.ts} +0 -0
  80. /package/{theme.d.ts → dist/theme.d.ts} +0 -0
@@ -0,0 +1,107 @@
1
+ import React from "react";
2
+ import styled from "styled-components";
3
+ import { getMatchingMdxType } from "./utils";
4
+ import { BaseLayout } from "./BaseLayout";
5
+
6
+ function invariant(condition: any, message: string) {
7
+ if (!condition) {
8
+ throw new Error(message);
9
+ }
10
+ }
11
+
12
+ const QuoteBaseLayout = styled.div`
13
+ position: absolute;
14
+ inset: 0;
15
+ display: flex;
16
+ flex-flow: column nowrap;
17
+ justify-content: center;
18
+ .blockquote > * {
19
+ border-left: 0;
20
+ }
21
+ .blockquote {
22
+ text-align: justify;
23
+ position: relative;
24
+ }
25
+ .blockquote > :first-child {
26
+ &:before {
27
+ content: "“";
28
+ position: absolute;
29
+ font-size: 16rem;
30
+ left: -5rem;
31
+ font-family: serif;
32
+ top: 50%;
33
+ transform: translateY(-50%);
34
+ color: #ffffff22;
35
+ }
36
+ &:after {
37
+ content: "”";
38
+ position: absolute;
39
+ font-size: 16rem;
40
+ right: 3rem;
41
+ bottom: -5rem;
42
+ font-family: serif;
43
+ color: #ffffff22;
44
+ pointer-events: none;
45
+ }
46
+ }
47
+ .blockquote * {
48
+ line-height: 3.5rem !important;
49
+ font-size: 2.5rem;
50
+ }
51
+ .source {
52
+ font-family: Bitter, "Helvetica Neue", Helvetica, Arial, sans-serif;
53
+ box-sizing: border-box;
54
+ width: 100%;
55
+ margin-top: 4rem;
56
+ text-align: right;
57
+ font-size: 2rem;
58
+ a {
59
+ text-decoration: none;
60
+ color: #ffffff77;
61
+ }
62
+ }
63
+ `;
64
+ export function QuoteLayout({
65
+ children,
66
+ author,
67
+ sourceUrl,
68
+ }: {
69
+ children: React.ReactNode;
70
+ author: string;
71
+ sourceUrl?: string;
72
+ }) {
73
+ const [blockquote, rest] = getMatchingMdxType(children, "blockquote");
74
+ invariant(rest, "QuoteLayout can only have one blockquote");
75
+ return (
76
+ <QuoteBaseLayout>
77
+ <div
78
+ style={{
79
+ display: "flex",
80
+ flexDirection: "column",
81
+ alignItems: "flex-start",
82
+ justifyContent: "center",
83
+ textAlign: "center",
84
+ margin: "0 4rem 0 12rem",
85
+ }}
86
+ >
87
+ <div
88
+ style={{
89
+ flex: 1,
90
+ padding: "0 12rem 0 2rem",
91
+ boxSizing: "border-box",
92
+ }}
93
+ className="blockquote"
94
+ >
95
+ {blockquote}
96
+ </div>
97
+ <div className="source" style={{ flex: 1, padding: "0 4rem" }}>
98
+ {
99
+ <a href={sourceUrl} target="_blank" rel="noopener noreferrer">
100
+ {author}
101
+ </a>
102
+ }
103
+ </div>
104
+ </div>
105
+ </QuoteBaseLayout>
106
+ );
107
+ }
@@ -0,0 +1,14 @@
1
+ import styled from "styled-components";
2
+
3
+ export const SectionLayout = styled.div`
4
+ display: flex;
5
+ flex-direction: row;
6
+ align-items: center;
7
+ justify-content: space-between;
8
+ height: 100%;
9
+ padding-left: 9rem;
10
+
11
+ h2 {
12
+ color: white;
13
+ }
14
+ `;
@@ -0,0 +1,44 @@
1
+ import React from "react";
2
+ import { ColumnsLayout } from "./columns";
3
+ import { Margins, getCodeChildren } from "./utils";
4
+ import styled from "styled-components";
5
+
6
+ const CodeSide = styled.div`
7
+ pre {
8
+ font-size: 0.9rem;
9
+ }
10
+ `;
11
+
12
+ export function SidedCodeLayout({
13
+ children,
14
+ position = "right",
15
+ }: {
16
+ children: React.ReactNode;
17
+ position?: "left" | "right";
18
+ }) {
19
+ const [code, rest] = getCodeChildren(children);
20
+
21
+ return (
22
+ <ColumnsLayout reverse={position === "left"}>
23
+ <div
24
+ style={{
25
+ marginLeft: Margins.horizontal,
26
+ paddingRight: Margins.horizontalInternal,
27
+ }}
28
+ >
29
+ {rest}
30
+ </div>
31
+ <CodeSide
32
+ style={{
33
+ backgroundColor: "#1d2021",
34
+ height: "100%",
35
+ display: "flex",
36
+ flexDirection: "column",
37
+ justifyContent: "center",
38
+ }}
39
+ >
40
+ {code}
41
+ </CodeSide>
42
+ </ColumnsLayout>
43
+ );
44
+ }
@@ -0,0 +1,82 @@
1
+ import React from "react";
2
+ import styled from "styled-components";
3
+ import { SVGObject } from "./styled";
4
+ import { getMatchingMdxType } from "./utils";
5
+ import { Image } from "../components/Image";
6
+
7
+ const DivWithHeading = styled.div`
8
+ h2 {
9
+ margin-top: 0;
10
+ }
11
+ h2 strong {
12
+ color: var(--color-secondary);
13
+ font-weight: 400;
14
+ }
15
+ `;
16
+
17
+ /**
18
+ * Parse a ratio like 6/5
19
+ */
20
+ function parseRatio(ratio: string) {
21
+ const [a, b] = ratio.split("/");
22
+ return { left: parseInt(a), right: parseInt(b) };
23
+ }
24
+
25
+ export const SidedImageLayout = ({
26
+ children,
27
+ image,
28
+ position,
29
+ height,
30
+ ratio: ratioProp,
31
+ }: {
32
+ children: React.ReactNode;
33
+ image?: string;
34
+ position?: "left" | "right";
35
+ ratio?: string;
36
+ height?: number;
37
+ }) => {
38
+ const isReversed = position === "left";
39
+ const [component, rest] = getMatchingMdxType(children, "Image") || image;
40
+ const ratio = parseRatio(ratioProp || "6/4");
41
+
42
+ if (!image && !component.length) {
43
+ console.error("No image provided for SidedImageLayout");
44
+ return null;
45
+ }
46
+ return (
47
+ <DivWithHeading
48
+ style={{
49
+ display: "flex",
50
+ flexDirection: isReversed ? "row-reverse" : "row",
51
+ position: "absolute",
52
+ left: 0,
53
+ right: 0,
54
+ bottom: 0,
55
+ top: 0,
56
+ }}
57
+ >
58
+ <div
59
+ style={{
60
+ flex: `${ratio.left || 6} 0`,
61
+ display: "flex",
62
+ flexDirection: "column",
63
+ justifyContent: "center",
64
+ padding: isReversed ? "0 7rem 0 4rem" : "0 4rem 0 7rem",
65
+ }}
66
+ >
67
+ {rest}
68
+ </div>
69
+ <div
70
+ style={{
71
+ flex: `${ratio.right || 4} 0`,
72
+ display: "flex",
73
+ flexDirection: "column",
74
+ justifyContent: "center",
75
+ backgroundColor: "white",
76
+ }}
77
+ >
78
+ {component || <Image src={image} />}
79
+ </div>
80
+ </DivWithHeading>
81
+ );
82
+ };
@@ -0,0 +1,31 @@
1
+ import React from "react";
2
+ import { ColumnsLayout } from "./columns";
3
+ import { Margins, getMatchingMdxType } from "./utils";
4
+
5
+ export function SideLayout({
6
+ children,
7
+ position = "right",
8
+ }: {
9
+ children: React.ReactNode;
10
+ position?: "right" | "left";
11
+ }) {
12
+ const [side, rest] = getMatchingMdxType(children, "Side");
13
+ return (
14
+ <ColumnsLayout reverse={position === "left"}>
15
+ <div style={{ marginLeft: Margins.horizontal }}>{rest}</div>
16
+ <div
17
+ style={{
18
+ marginLeft: Margins.horizontalInternal,
19
+ padding: `0 ${Margins.vertical}`,
20
+ backgroundColor: "#00000044",
21
+ display: "flex",
22
+ flexDirection: "column",
23
+ justifyContent: "center",
24
+ height: "100%",
25
+ }}
26
+ >
27
+ {side}
28
+ </div>
29
+ </ColumnsLayout>
30
+ );
31
+ }
@@ -0,0 +1,56 @@
1
+ import React from "react";
2
+ import styled from "styled-components";
3
+
4
+ const DivWithHeading = styled.div`
5
+ h2 {
6
+ margin-top: 0;
7
+ }
8
+ h2 strong {
9
+ color: var(--color-secondary);
10
+ font-weight: 400;
11
+ }
12
+ `;
13
+
14
+ const ColumnsContainer = styled(DivWithHeading)`
15
+ display: flex;
16
+ flex-direction: row;
17
+ position: absolute;
18
+ left: 0;
19
+ right: 0;
20
+ top: 0;
21
+ bottom: 0;
22
+ alignitems: center;
23
+ `;
24
+
25
+ export function ColumnsLayout({
26
+ children,
27
+ reverse,
28
+ }: {
29
+ children: React.ReactNode;
30
+ reverse?: boolean;
31
+ }) {
32
+ const childrenArray = React.Children.toArray(children);
33
+ return (
34
+ <ColumnsContainer
35
+ style={{
36
+ flexDirection: reverse ? "row-reverse" : "row",
37
+ }}
38
+ >
39
+ {childrenArray.map((child, i) => (
40
+ <div
41
+ key={i}
42
+ style={{
43
+ flex: 1,
44
+ height: "100%",
45
+ display: "flex",
46
+ flexFlow: "column",
47
+ justifyContent: "center",
48
+ boxSizing: "border-box",
49
+ }}
50
+ >
51
+ {child}
52
+ </div>
53
+ ))}
54
+ </ColumnsContainer>
55
+ );
56
+ }
@@ -0,0 +1,19 @@
1
+ import { CenteredLayout } from "./CenteredLayout";
2
+ import { Default3Layout } from "./Default3Layout";
3
+ import { MainSectionLayout } from "./MainSectionLayout";
4
+ import { QuoteLayout } from "./QuoteLayout";
5
+ import { SectionLayout } from "./SectionLayout";
6
+ import { SidedCodeLayout } from "./SideCodeLayout";
7
+ import { SidedImageLayout } from "./SideImageLayout";
8
+ import { SideLayout } from "./SideLayout";
9
+
10
+ export default {
11
+ mainSection: MainSectionLayout,
12
+ centered: CenteredLayout,
13
+ default3: Default3Layout,
14
+ quote: QuoteLayout,
15
+ sidedCode: SidedCodeLayout,
16
+ sidedImage: SidedImageLayout,
17
+ side: SideLayout,
18
+ section: SectionLayout,
19
+ };
@@ -0,0 +1,7 @@
1
+ import styled from "styled-components";
2
+
3
+ export const SVGObject = styled.object`
4
+ padding: 3rem 2rem;
5
+ box-sizing: border-box;
6
+ background-color: white;
7
+ `;
@@ -0,0 +1,66 @@
1
+ import React from "react";
2
+
3
+ export const Margins = {
4
+ vertical: "4rem",
5
+ horizontal: "7rem",
6
+ horizontalInternal: "2rem",
7
+ };
8
+
9
+ export function getHeading(children: React.ReactNode) {
10
+ const allChild = React.Children.toArray(children);
11
+ if (allChild.length === 0) return [null, allChild];
12
+ const [candidate, ...rest] = allChild;
13
+ if (!React.isValidElement(candidate)) return [null, allChild];
14
+ if (["h2", "h3"].includes(candidate.props.originalType)) {
15
+ return [candidate, rest];
16
+ }
17
+ return [null, allChild];
18
+ }
19
+
20
+ export function getCode(children: React.ReactNode) {
21
+ const allChild = React.Children.toArray(children);
22
+
23
+ if (allChild.length === 0) return [null, allChild];
24
+
25
+ const index = allChild.findIndex((child) => {
26
+ if (!React.isValidElement(child)) return false;
27
+ return child.props.originalType === "pre";
28
+ });
29
+
30
+ if (index === -1) return [null, allChild];
31
+
32
+ const candidate = allChild[index];
33
+ const rest = allChild.filter((_, i) => i !== index);
34
+ return [candidate, rest];
35
+ }
36
+
37
+ export function getMatchingMdxType(children: React.ReactNode, mdxType: string) {
38
+ const allChild = React.Children.toArray(children);
39
+
40
+ const matchFn = (child: React.ReactNode) => {
41
+ if (!React.isValidElement(child)) return false;
42
+ if (typeof child.type !== "function") return false;
43
+ if (child.type.name === mdxType) return true;
44
+ if ("mdxType" in child.type === false) return false;
45
+
46
+ return child.type.mdxType === mdxType;
47
+ };
48
+
49
+ const matches = allChild.filter(matchFn);
50
+
51
+ const rest = allChild.filter((child) => !matchFn(child));
52
+
53
+ return [matches, rest];
54
+ }
55
+
56
+ export function getCodeChildren(children: React.ReactNode) {
57
+ const [code, rest] = getCode(children);
58
+ if (code) return [code, rest];
59
+
60
+ const [codeStepper, rest2] = getMatchingMdxType(children, "CodeStepper");
61
+ if (codeStepper.length > 0) return [codeStepper, rest2];
62
+
63
+ const [codes, rest3] = getMatchingMdxType(children, "FilePane");
64
+
65
+ return [codes, rest3];
66
+ }
package/src/node.d.ts ADDED
@@ -0,0 +1,5 @@
1
+ interface ImportMeta {
2
+ env: {
3
+ DEV: boolean;
4
+ };
5
+ }
package/src/style.d.ts ADDED
@@ -0,0 +1,10 @@
1
+ // Typings for .module.scss
2
+ declare module "*.module.scss" {
3
+ const content: { [className: string]: string };
4
+ export default content;
5
+ }
6
+
7
+ declare module "*.png" {
8
+ const content: any;
9
+ export default content;
10
+ }
@@ -0,0 +1,25 @@
1
+ import React from "react";
2
+
3
+ import { Box, FullScreen } from "spectacle";
4
+
5
+ export const template = ({ slideNumber, numberOfSlides }) => {
6
+ const percentage = (slideNumber / numberOfSlides) * 100;
7
+ return (
8
+ <div style={{ position: "absolute", bottom: 0, left: 0, right: 0 }}>
9
+ <Box padding="0 0 0.5em 0.7em">
10
+ <FullScreen />
11
+ </Box>
12
+
13
+ <div style={{ width: "100%", height: "4px", background: "#ffffff11" }}>
14
+ <div
15
+ style={{
16
+ width: `${percentage}%`,
17
+ height: "2px",
18
+ background: "#ffffff77",
19
+ transition: "width 0.3s ease",
20
+ }}
21
+ />
22
+ </div>
23
+ </div>
24
+ );
25
+ };
package/src/theme.ts ADDED
@@ -0,0 +1,28 @@
1
+ import "@fontsource/bitter/300.css";
2
+ import "@fontsource/bitter/400.css";
3
+ import "@fontsource/bitter/500.css";
4
+ import "@fontsource/bitter/700.css";
5
+
6
+ export default {
7
+ colors: {
8
+ //primary: "white",
9
+ primary: "rgb(43,19,90)",
10
+
11
+ secondary: "rgb(86,212,248)",
12
+ // secondary: "#F49676",
13
+ // tertiary: "#042F3B",
14
+ tertiary: "rgb(43,19,90)",
15
+ },
16
+ fonts: {
17
+ header: 'Bitter, "Helvetica Neue", Helvetica, Arial, sans-serif',
18
+ text: 'Bitter, "Helvetica Neue", Helvetica, Arial, sans-serif',
19
+ },
20
+ fontSizes: {
21
+ h1: "48px",
22
+ h2: "32px",
23
+ h3: "24px",
24
+ text: "24px",
25
+ monospace: "16px",
26
+ },
27
+ space: [8, 16, 24],
28
+ };
package/tsconfig.json ADDED
@@ -0,0 +1,29 @@
1
+ {
2
+ "compilerOptions": {
3
+ /* Target node 14 */
4
+ "module": "ESNext",
5
+ "lib": ["ES2020", "DOM"],
6
+ "target": "ES2020",
7
+ "skipLibCheck": true,
8
+
9
+ /* Transpile with esbuild */
10
+ "moduleResolution": "bundler",
11
+ "allowSyntheticDefaultImports": true,
12
+
13
+ /* Linting */
14
+ "strict": true,
15
+ "noUnusedLocals": true,
16
+ "noFallthroughCasesInSwitch": true,
17
+ "useUnknownInCatchVariables": true,
18
+
19
+ // Options
20
+ "outDir": "dist",
21
+ "baseUrl": "./src",
22
+ "esModuleInterop": true,
23
+ "declaration": true,
24
+ "jsx": "react",
25
+ "types": ["./src/node.d.ts"],
26
+ },
27
+ "include": ["src/**/*"],
28
+ "files": ["src/style.d.ts"],
29
+ }
@@ -1,7 +0,0 @@
1
- /// <reference types="react" />
2
- export declare const TimelineItemContent: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>;
3
- export declare const TimelineItemContentPhantom: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit<Omit<import("styled-components/dist/types").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>, "ref"> & {
4
- ref?: import("react").Ref<HTMLDivElement>;
5
- }, never>> & Omit<import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>, keyof import("react").Component<any, {}, any>>;
6
- export declare const TimelineItemBody: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>;
7
- export declare const TimelineItemTitle: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>;
@@ -1,12 +0,0 @@
1
- import React from "react";
2
- import { Image as SpectacleImage } from "spectacle";
3
- export declare const Link: (props: {
4
- href: string;
5
- children: React.ReactNode;
6
- }) => React.JSX.Element;
7
- export declare const Image: (props: React.ComponentProps<typeof SpectacleImage>) => React.JSX.Element;
8
- export declare const CustomHeading: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit<any, never>> | (import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit<any, never>> & Omit<styled_components.StyledComponent<"div", any, any, never>, keyof React.Component<any, {}, any>>);
9
- export declare const CustomQuote: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit<React.DetailedHTMLProps<React.BlockquoteHTMLAttributes<HTMLQuoteElement>, HTMLQuoteElement>, never>>;
10
- export declare const InlineCode: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>, never>>;
11
- export declare const HeadingTwo: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, never>>;
12
- export declare const HeadingThree: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, never>>;
@@ -1,2 +0,0 @@
1
- /// <reference types="react" />
2
- export declare const SectionLayout: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>;
@@ -1,2 +0,0 @@
1
- /// <reference types="react" />
2
- export declare const SVGObject: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit<import("react").DetailedHTMLProps<import("react").ObjectHTMLAttributes<HTMLObjectElement>, HTMLObjectElement>, never>>;
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes