@10up/block-components
Version:
10up Components built for the WordPress Block Editor.
30 lines • 851 B
TypeScript
interface NameProps {
tagName?: keyof JSX.IntrinsicElements;
[key: string]: unknown;
}
export declare const Name: React.FC<NameProps>;
interface FirstNameProps {
tagName?: keyof JSX.IntrinsicElements;
[key: string]: unknown;
}
export declare const FirstName: React.FC<FirstNameProps>;
interface LastNameProps {
tagName?: keyof JSX.IntrinsicElements;
[key: string]: unknown;
}
export declare const LastName: React.FC<LastNameProps>;
interface AvatarProps {
[key: string]: unknown;
}
export declare const Avatar: React.FC<AvatarProps>;
interface BioProps {
tagName?: keyof JSX.IntrinsicElements;
[key: string]: unknown;
}
export declare const Bio: React.FC<BioProps>;
interface EmailProps {
[key: string]: unknown;
}
export declare const Email: React.FC<EmailProps>;
export {};
//# sourceMappingURL=index.d.ts.map