feat(Skeleton): new component

This commit is contained in:
Benjamin Canac
2024-03-12 18:22:55 +01:00
parent 4b3a9855ac
commit e2fb25309f
7 changed files with 58 additions and 1 deletions

View File

@@ -7,4 +7,5 @@ export { default as container } from './container'
export { default as icons } from './icons'
export { default as kbd } from './kbd'
export { default as popover } from './popover'
export { default as skeleton } from './skeleton'
export { default as tooltip } from './tooltip'

3
src/theme/skeleton.ts Normal file
View File

@@ -0,0 +1,3 @@
export default {
base: 'animate-pulse rounded-md bg-gray-50 dark:bg-gray-800'
}