import React, { FC } from 'react'; import styled from 'styled-components'; import { RendererProps } from './RendererProps'; const Div = styled.div` width: 64px; height: 64px; color: white; background: ${({ value }) => value}; `; export const RendererBackground: FC = ({ value }) => { return
; };