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,28 +0,0 @@
const BadgeProps = [
{
name: "value",
type: "any",
default: "null",
description: "Value to display inside the badge."
},
{
name: "severity",
type: "string",
default: "null",
description: "Severity type of the badge."
},
{
name: "size",
type: "string",
default: "null",
description: 'Size of the badge, valid options are "large" and "xlarge".'
}
];
module.exports = {
badge: {
name: "Badge",
description: "Badge is a small status indicator for another element.",
props: BadgeProps
}
};