├── .gitignore ├── .vscodeignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── package.json ├── pnpm-lock.yaml ├── public ├── .DS_Store ├── icon.png └── tailus-ui-html.png └── src ├── html ├── annonce.code-snippets ├── avatar.code-snippets ├── badge.code-snippets ├── button.code-snippets ├── callout.code-snippets ├── card.code-snippets ├── checkbox.code-snippets ├── input.code-snippets ├── progress.code-snippets ├── radio-card.code-snippets ├── radio-group.code-snippets ├── select.code-snippets ├── switch.code-snippets └── textarea.code-snippets ├── next ├── annonce.code-snippets ├── avatar.code-snippets ├── badge.code-snippets ├── button.code-snippets ├── callout.code-snippets ├── card.code-snippets ├── checkbox.code-snippets ├── input.code-snippets ├── progress.code-snippets ├── radio-card.code-snippets ├── radio-group.code-snippets ├── select.code-snippets ├── switch.code-snippets └── textarea.code-snippets └── nuxt ├── annonce.code-snippets └── callout.code-snippets /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tailus-UI/snippets/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tailus-UI/snippets/HEAD/.vscodeignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tailus-UI/snippets/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tailus-UI/snippets/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tailus-UI/snippets/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tailus-UI/snippets/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tailus-UI/snippets/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tailus-UI/snippets/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tailus-UI/snippets/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /public/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tailus-UI/snippets/HEAD/public/.DS_Store -------------------------------------------------------------------------------- /public/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tailus-UI/snippets/HEAD/public/icon.png -------------------------------------------------------------------------------- /public/tailus-ui-html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tailus-UI/snippets/HEAD/public/tailus-ui-html.png -------------------------------------------------------------------------------- /src/html/annonce.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tailus-UI/snippets/HEAD/src/html/annonce.code-snippets -------------------------------------------------------------------------------- /src/html/avatar.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tailus-UI/snippets/HEAD/src/html/avatar.code-snippets -------------------------------------------------------------------------------- /src/html/badge.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tailus-UI/snippets/HEAD/src/html/badge.code-snippets -------------------------------------------------------------------------------- /src/html/button.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tailus-UI/snippets/HEAD/src/html/button.code-snippets -------------------------------------------------------------------------------- /src/html/callout.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tailus-UI/snippets/HEAD/src/html/callout.code-snippets -------------------------------------------------------------------------------- /src/html/card.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tailus-UI/snippets/HEAD/src/html/card.code-snippets -------------------------------------------------------------------------------- /src/html/checkbox.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tailus-UI/snippets/HEAD/src/html/checkbox.code-snippets -------------------------------------------------------------------------------- /src/html/input.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tailus-UI/snippets/HEAD/src/html/input.code-snippets -------------------------------------------------------------------------------- /src/html/progress.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tailus-UI/snippets/HEAD/src/html/progress.code-snippets -------------------------------------------------------------------------------- /src/html/radio-card.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tailus-UI/snippets/HEAD/src/html/radio-card.code-snippets -------------------------------------------------------------------------------- /src/html/radio-group.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tailus-UI/snippets/HEAD/src/html/radio-group.code-snippets -------------------------------------------------------------------------------- /src/html/select.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tailus-UI/snippets/HEAD/src/html/select.code-snippets -------------------------------------------------------------------------------- /src/html/switch.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tailus-UI/snippets/HEAD/src/html/switch.code-snippets -------------------------------------------------------------------------------- /src/html/textarea.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tailus-UI/snippets/HEAD/src/html/textarea.code-snippets -------------------------------------------------------------------------------- /src/next/annonce.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tailus-UI/snippets/HEAD/src/next/annonce.code-snippets -------------------------------------------------------------------------------- /src/next/avatar.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tailus-UI/snippets/HEAD/src/next/avatar.code-snippets -------------------------------------------------------------------------------- /src/next/badge.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tailus-UI/snippets/HEAD/src/next/badge.code-snippets -------------------------------------------------------------------------------- /src/next/button.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tailus-UI/snippets/HEAD/src/next/button.code-snippets -------------------------------------------------------------------------------- /src/next/callout.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tailus-UI/snippets/HEAD/src/next/callout.code-snippets -------------------------------------------------------------------------------- /src/next/card.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tailus-UI/snippets/HEAD/src/next/card.code-snippets -------------------------------------------------------------------------------- /src/next/checkbox.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tailus-UI/snippets/HEAD/src/next/checkbox.code-snippets -------------------------------------------------------------------------------- /src/next/input.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tailus-UI/snippets/HEAD/src/next/input.code-snippets -------------------------------------------------------------------------------- /src/next/progress.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tailus-UI/snippets/HEAD/src/next/progress.code-snippets -------------------------------------------------------------------------------- /src/next/radio-card.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tailus-UI/snippets/HEAD/src/next/radio-card.code-snippets -------------------------------------------------------------------------------- /src/next/radio-group.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tailus-UI/snippets/HEAD/src/next/radio-group.code-snippets -------------------------------------------------------------------------------- /src/next/select.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tailus-UI/snippets/HEAD/src/next/select.code-snippets -------------------------------------------------------------------------------- /src/next/switch.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tailus-UI/snippets/HEAD/src/next/switch.code-snippets -------------------------------------------------------------------------------- /src/next/textarea.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tailus-UI/snippets/HEAD/src/next/textarea.code-snippets -------------------------------------------------------------------------------- /src/nuxt/annonce.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tailus-UI/snippets/HEAD/src/nuxt/annonce.code-snippets -------------------------------------------------------------------------------- /src/nuxt/callout.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tailus-UI/snippets/HEAD/src/nuxt/callout.code-snippets --------------------------------------------------------------------------------