8 lines
356 B
TypeScript
8 lines
356 B
TypeScript
import * as React from 'react';
|
|
import { BoxProps } from '../../primitives/Box';
|
|
export interface TFooterProps extends BoxProps<'button'> {
|
|
children: React.ReactNode;
|
|
icon: React.ReactNode;
|
|
}
|
|
export declare const TFooter: ({ children, icon, ...props }: TFooterProps) => import("react/jsx-runtime").JSX.Element;
|
|
//# sourceMappingURL=TFooter.d.ts.map
|