24 lines
417 B
TypeScript
Raw Normal View History

2022-01-26 17:38:16 +08:00
interface AttrType {
x: number
y: number
w: number
h: number
}
export const useComponentStyle = (attr: AttrType, index: number) => {
const componentStyle = {
zIndex: index,
left: `${attr.x}px`,
top: `${attr.y}px`,
2022-01-27 20:47:22 +08:00
}
return componentStyle
}
2022-01-27 23:16:51 +08:00
2022-01-27 20:47:22 +08:00
export const useSizeStyle = (attr: AttrType) => {
const sizeStyle = {
2022-01-26 17:38:16 +08:00
width: `${attr.w}px`,
height: `${attr.h}px`
}
2022-01-27 20:47:22 +08:00
return sizeStyle
2022-01-26 17:38:16 +08:00
}