unika-components
Version:
Unika Vue3 components library
19 lines (18 loc) • 517 B
TypeScript
import { ElementData } from '../defaultProps';
export declare function useElementStyle(element: ElementData): {
elementStyle: import("vue").ComputedRef<{
position: string;
fontFamily: string;
fontSize: string;
width: string;
height: string;
left: string;
top: string;
transform: string;
opacity: number;
border: string;
borderRadius: string;
animation: string;
boxShadow: string;
}>;
};