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