@sanity/form-builder
Version:
Sanity form builder
68 lines • 2 kB
TypeScript
import React from 'react';
export declare const Normal: ({ children, ...rest }: {
[x: string]: any;
children: any;
}) => React.JSX.Element;
export declare const Heading1: ({ children, ...rest }: {
[x: string]: any;
children: any;
}) => React.JSX.Element;
export declare const Heading2: ({ children, ...rest }: {
[x: string]: any;
children: any;
}) => React.JSX.Element;
export declare const Heading3: ({ children, ...rest }: {
[x: string]: any;
children: any;
}) => React.JSX.Element;
export declare const Heading4: ({ children, ...rest }: {
[x: string]: any;
children: any;
}) => React.JSX.Element;
export declare const Heading5: ({ children, ...rest }: {
[x: string]: any;
children: any;
}) => React.JSX.Element;
export declare const Heading6: ({ children, ...rest }: {
[x: string]: any;
children: any;
}) => React.JSX.Element;
export declare const BlockQuote: ({ children, ...rest }: {
[x: string]: any;
children: any;
}) => React.JSX.Element;
export declare const TEXT_STYLES: {
normal: ({ children, ...rest }: {
[x: string]: any;
children: any;
}) => React.JSX.Element;
h1: ({ children, ...rest }: {
[x: string]: any;
children: any;
}) => React.JSX.Element;
h2: ({ children, ...rest }: {
[x: string]: any;
children: any;
}) => React.JSX.Element;
h3: ({ children, ...rest }: {
[x: string]: any;
children: any;
}) => React.JSX.Element;
h4: ({ children, ...rest }: {
[x: string]: any;
children: any;
}) => React.JSX.Element;
h5: ({ children, ...rest }: {
[x: string]: any;
children: any;
}) => React.JSX.Element;
h6: ({ children, ...rest }: {
[x: string]: any;
children: any;
}) => React.JSX.Element;
blockquote: ({ children, ...rest }: {
[x: string]: any;
children: any;
}) => React.JSX.Element;
};
//# sourceMappingURL=textStyles.d.ts.map