rn-inkpad
Version:
<img src="https://res.cloudinary.com/fercloudinary/image/upload/v1715452841/packages/inkpad-banner_acl0xl.png" />
84 lines (83 loc) • 1.82 kB
TypeScript
export declare const cardStyles: {
cardContainer: {
width: "100%";
backgroundColor: string;
paddingHorizontal: number;
paddingVertical: number;
borderRadius: number;
};
cardContent: {
flexDirection: "row";
};
icon: {
paddingRight: number;
paddingTop: number;
};
title: {
fontWeight: "800";
};
description: {
paddingRight: number;
};
buttonsContainer: {
flexDirection: "row";
justifyContent: "flex-end";
marginVertical: number;
gap: number;
};
button: {
paddingHorizontal: number;
borderRadius: number;
paddingVertical: number;
};
shadow: {
shadowColor: string;
shadowOffset: {
width: number;
height: number;
};
shadowOpacity: number;
shadowRadius: number;
elevation: number;
};
};
export declare const cardImageStyles: {
container: {
width: "100%";
aspectRatio: number;
};
text: {
alignSelf: "flex-end";
paddingHorizontal: number;
marginVertical: number;
};
};
export declare const ratingCardStyles: {
container: {
alignSelf: "center";
borderRadius: number;
flexDirection: "row";
gap: number;
overflow: "hidden";
position: "absolute";
zIndex: number;
};
information: {
paddingHorizontal: number;
justifyContent: "center";
};
title: {
fontSize: number;
fontWeight: "700";
};
decription: {
fontSize: number;
fontWeight: "300";
};
rating: {
flexDirection: "row";
alignItems: "center";
gap: number;
marginTop: number;
};
};