UNPKG

@devfamily/admiral

Version:

Admiral is a frontend framework for creating back office using React. It provides out-of-the-box components and tools that make developing an admin interface easy and fast.

9 lines (8 loc) 297 B
/// <reference types="react" /> import { ButtonProps } from '../ui/Button/interfaces'; export declare const CreateButton: ({ basePath, children }: CreateButtonProps) => JSX.Element; interface Props { basePath?: string; } export declare type CreateButtonProps = Props & ButtonProps; export {};