Files
WAI_Project_UNIX/uni_modules/cool-ui/components/cl-topbar/props.ts
2025-07-21 16:47:04 +08:00

23 lines
495 B
TypeScript

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