welcome-ui
Version:
Customizable design system with react • styled-components • styled-system and ariakit.
10 lines (9 loc) • 337 B
TypeScript
import { default as React } from 'react';
type AssetWithTitleProps = {
children: React.ReactNode;
customContent?: JSX.Element | string;
subtitle?: JSX.Element | string;
title?: JSX.Element | string;
};
export declare const AssetWithTitle: import('../../System').CreateWuiComponent<"div", AssetWithTitleProps>;
export {};