diff --git a/src/components/schedule/break.astro b/src/components/schedule/break.astro index 3da93b677..33fa3920b 100644 --- a/src/components/schedule/break.astro +++ b/src/components/schedule/break.astro @@ -3,12 +3,13 @@ export interface Props { time: string; title: string; style?: any; + className?: string; } -const { time, title, style }: Props = Astro.props; +const { time, title, style, className }: Props = Astro.props; --- -