react-casino-roulette-updated
Version:
The best React Casino Roulette
10 lines (9 loc) • 440 B
TypeScript
import type { FC } from 'react';
import './Chip.css';
import { BetType } from '../../../types';
export interface IChipProps {
position: 'center' | 'right-top' | 'right-bottom' | 'center-top' | 'right-top-with-offset' | 'right-bottom-with-offset' | 'right-bottom-with-no-offset' | 'right-top-with-no-offset' | 'center-bottom' | 'left-top' | 'right-center';
icon?: any;
bet?: BetType;
}
export declare const Chip: FC<IChipProps>;