Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@skava/ui / dist / components / atoms / Placeholder / typings.d.ts
Size: Mime:
import { ReactNode } from 'react';
import { VectorProps } from '../Vector';
export declare type PlaceholderBreedType = 'media' | 'image' | 'paragraph' | 'rectangle' | 'square' | 'circle' | 'round' | 'text';
export interface SVGSpecsProps {
    x: string | number;
    y: string | number;
    width: string | number;
    height: string | number;
    viewBox: string;
}
export declare type StripedMeasurementType = string | number;
export interface PlaceholderVectorProps extends VectorProps {
    width?: string | number;
    height?: string | number;
    viewBox?: string;
    isDynamicViewBox?: boolean;
    fill?: string;
    stroke?: string;
    style?: Object;
    nowrap?: boolean;
    key?: number | string;
}
export interface PlaceholderProps extends PlaceholderVectorProps {
    className?: string;
    children?: ReactNode;
    breedType?: PlaceholderBreedType;
}