import { PullToRefresh as PullToRefreshPrimitive } from "@seed-design/react-pull-to-refresh"; import { pullToRefresh, type PullToRefreshVariantProps, } from "@seed-design/css/recipes/pull-to-refresh"; import { createSlotRecipeContext } from "../../utils/createSlotRecipeContext"; const { withContext, withProvider } = createSlotRecipeContext(pullToRefresh); export interface PullToRefreshRootProps extends PullToRefreshVariantProps, PullToRefreshPrimitive.RootProps {} export const PullToRefreshRoot = withProvider( PullToRefreshPrimitive.Root, "root", ); export interface PullToRefreshIndicatorProps extends PullToRefreshPrimitive.IndicatorProps {} export const PullToRefreshIndicator = withContext( PullToRefreshPrimitive.Indicator, "indicator", ); export interface PullToRefreshContentProps extends PullToRefreshPrimitive.ContentProps {} export const PullToRefreshContent = PullToRefreshPrimitive.Content;