"use client"
import React from "react"
import { useIsSticky } from "../../hooks"
import { classNames } from "../../utils"
import { SpaceBetween, SpaceBetweenProps } from "../SpaceBetween"
import { Text, TextBodyProps } from "../Text"
export type ListHeaderProps = SpaceBetweenProps
const ListHeaderBase = ({ className, ...rest }: ListHeaderProps) => {
const { ref, isSticky } = useIsSticky()
return (
)
}
export const ListHeaderTitle = ({
size = "xs",
weight = "semibold",
...rest
}: TextBodyProps) => {
return
}
export const ListHeader = Object.assign(ListHeaderBase, {
Title: ListHeaderTitle,
})