vuestic-ui
Version:
Vue 3 UI Framework
35 lines (34 loc) • 820 B
TypeScript
type AlertStyleProps = {
modelValue: boolean;
color: string;
textColor: string;
title: string;
description: string;
icon: string;
closeText: string;
closeable: boolean;
dense: boolean;
outline: boolean;
center: boolean;
borderColor: string;
border: string;
};
export declare const useAlertStyles: (props: AlertStyleProps) => {
alertStyle: import("vue").ComputedRef<{
border: string;
padding: string;
backgroundColor: string;
boxShadow: string;
}>;
contentStyle: import("vue").ComputedRef<{
alignItems: string;
color: string;
}>;
titleStyle: import("vue").ComputedRef<{
color: string;
}>;
borderStyle: import("vue").ComputedRef<{
backgroundColor: string;
}>;
};
export {};