import React, { type HTMLAttributes } from 'react' import classnames from 'classnames' import { type OverrideClassName } from '~components/types/OverrideClassName' import { assetUrl } from '~components/utils/hostedAssets' import styles from './Base.module.scss' export type BaseProps = { /** * Refer to the Base Illustration Sticker Sheet in Heart UI Kit */ name: string /** * Only provide if there is context/text required surrounding this illustration. * @default "" */ alt?: string /** * Aspect ratio that is set on the illustration in Scene/Spot which wraps the * component in a container, forcing the aspect ratio. */ aspectRatio?: 'landscape' | 'portrait' | 'square' } & OverrideClassName> export const Base = ({ name, alt = '', classNameOverride, aspectRatio, ...restProps }: BaseProps): JSX.Element => { const className = classnames(styles.wrapper, classNameOverride) return aspectRatio ? (
{alt}
) : ( {alt} ) } Base.displayName = 'Base'