Files
2025-11-13 10:36:23 +08:00

24 lines
515 B
TypeScript

import type { PassThroughProps } from "../../types";
import type { ClIconProps } from "../cl-icon/props";
export type ClTopbarPassThrough = {
className?: string;
title?: PassThroughProps;
back?: ClIconProps;
};
export type ClTopbarProps = {
className?: string;
pt?: ClTopbarPassThrough;
title?: string;
color?: string;
backgroundColor?: string;
showBack?: boolean;
backable?: boolean;
backPath?: string;
backIcon?: string;
safeAreaTop?: boolean;
fixed?: boolean;
height?: number | string | any;
};