xtreme-ui
Version:
Collection of reusable components that can be used in web projects
15 lines • 422 B
TypeScript
import { CSSProperties, ReactNode } from 'react';
export type TActionCardProps = {
className?: string;
children?: ReactNode;
style?: CSSProperties;
size?: TActionCardSize;
onClick?: () => void;
};
export type TActionCardSize = [number, number] | keyof typeof EActionCardSize;
export declare enum EActionCardSize {
mini = 100,
default = 164,
large = 254
}
//# sourceMappingURL=types.d.ts.map