import { RockMetaProps } from "~/types/rock-types"; export const LayerStyleProps: RockMetaProps = { backgroundColor: { valueType: "string", }, borderWidth: { valueType: "string", }, borderColor: { valueType: "string", }, borderStyle: { valueType: "string", }, borderRadius: { valueType: "string", }, borderTopLeftRadius: { valueType: "string", }, borderTopRightRadius: { valueType: "string", }, borderBottomRightRadius: { valueType: "string", }, borderBottomLeftRadius: { valueType: "string", }, padding: { valueType: "string", }, paddingTop: { valueType: "string", }, paddingRight: { valueType: "string", }, paddingBottom: { valueType: "string", }, paddingLeft: { valueType: "string", }, opacity: { valueType: "string", }, textAlign: { valueType: "string", }, }; export const LayerStylePropNames = Object.keys(LayerStyleProps);