import { Icon } from '@src/ui/components/Icon'; import { IData } from '@src/ui/types'; import { withState } from '@src/ui/withState'; import * as React from 'react'; interface SpriteProps { src: string; x: number; y: number; width: number; height: number; className?: string; } export const Sprite = (props: SpriteProps) => (
);