import React from 'react'; import { Button } from '../Button'; import { Badge } from '../Badge'; import { Icon } from '../Icon'; export interface HeroSkylinePanoramaProps extends React.HTMLAttributes { kicker?: string; title: string; statement?: string; body?: string; primaryAction?: string; secondaryAction?: string; onPrimary?: () => void; onSecondary?: () => void; backgroundImage?: string; } export function HeroSkylinePanorama({ kicker, title, statement, body, primaryAction, secondaryAction, onPrimary, onSecondary, backgroundImage, className = '', ...props }: HeroSkylinePanoramaProps) { return (
{/* Background Layer */} {backgroundImage && (
); }