import * as React from 'react'; import { palette } from 'roleypoly/src/design-system/atoms/colors'; export type LogoProps = { fill: string; width: number; height: number; circleFill: string; circleOuterFill: string; typeFill: string; style: object; className: string; }; export const Logotype = ({ typeFill = palette.taupe400, circleFill = palette.red200, circleOuterFill = palette.green200, ...props }: Partial) => ( ); export const Logomark = ({ circleFill = palette.red200, circleOuterFill = palette.green200, ...props }: Partial) => ( );