10 lines
294 B
TypeScript
10 lines
294 B
TypeScript
import React from 'react';
|
|
declare type Props = {
|
|
icon?: React.ReactNode;
|
|
title?: string;
|
|
description?: string;
|
|
children?: React.ReactNode;
|
|
};
|
|
declare const _default: React.MemoExoticComponent<(props: Props) => import("react/jsx-runtime").JSX.Element>;
|
|
export default _default;
|