@edancerys/ts-react-components-lib
Version:
14 lines (13 loc) • 381 B
TypeScript
import React from 'react';
export interface CategoryComponentProps {
title?: string;
url?: string;
borderRadius?: string;
margin?: string;
padding?: string;
width?: string;
height?: string;
className?: string;
onClick?: (event?: React.MouseEvent) => void;
}
export declare const CategoryComponent: React.FC<CategoryComponentProps>;