@wazespace/wme-react-components
Version:
A package with useful replications of the Waze Map Editor components to use in userscripts
13 lines • 389 B
TypeScript
import { ReactNode } from 'react';
export type WzCardSize = 'sm' | 'md' | 'lg';
export type WzCardElevation = 0 | 1 | 2 | 3 | 4 | 5;
export interface WzCardProps {
children: ReactNode;
size?: WzCardSize;
elevation?: WzCardElevation;
elevationOnHover?: WzCardElevation;
disabled?: boolean;
read?: boolean;
selected?: boolean;
}
//# sourceMappingURL=Card.d.ts.map