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