export interface ICounterProps {
    /**
     * Coutner number for Counter component
     */
    counter: number;
    /**
     * Property to align it in center
     */
    center?: boolean;
}
