Initial commit for nuxt

This commit is contained in:
Bahadir Sofuoglu 2022-09-06 14:52:18 +03:00
parent 271fd62d8d
commit 3cb3910561
1047 changed files with 15090 additions and 175754 deletions

View file

@ -1,46 +0,0 @@
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
}
};