Pages route change - api generator added

This commit is contained in:
Bahadir Sofuoglu 2022-09-12 10:13:52 +03:00
parent 28b8e0a7e0
commit 3eac7d6658
179 changed files with 10592 additions and 5 deletions

View file

@ -0,0 +1,46 @@
const SkeletonProps = [
{
name: "shape",
type: "string",
default: "rectangle",
description: 'Shape of the element, options are "rectangle" and "circle".'
},
{
name: "size",
type: "string",
default: "null",
description: "Size of the Circle or Square."
},
{
name: "width",
type: "string",
default: "100%",
description: "Width of the element."
},
{
name: "height",
type: "string",
default: "1rem",
description: "Height of the element."
},
{
name: "borderRadius",
type: "string",
default: "null",
description: "Border radius of the element, defaults to value from theme."
},
{
name: "animation",
type: "string",
default: "wave",
description: 'Type of the animation, valid options are "wave" and "none".'
}
];
module.exports = {
skeleton: {
name: "Skeleton",
description: "Skeleton is a placeholder to display instead of the actual content.",
props: SkeletonProps
}
};