import React from "react"; import { styled, theme } from "../theme"; import type * as WPDS from "../theme"; const NAME = "CarouselHeader"; const Container = styled("div", { display: "flex", marginBlockEnd: theme.space["100"], }); export type CarouselHeaderProps = { css?: WPDS.CSS; } & React.ComponentPropsWithRef; export const CarouselHeader = React.forwardRef< HTMLDivElement, CarouselHeaderProps >(({ children, ...props }, ref) => { return ( {children} ); }); CarouselHeader.displayName = NAME;