Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Website
Tasks
HuggingChat
Collections
Languages
Organizations
Community
Blog
Posts
Daily Papers
Learn
Discord
Forum
GitHub
Solutions
Team & Enterprise
Hugging Face PRO
Enterprise Support
Inference Providers
Inference Endpoints
Storage Buckets
Log In
Sign Up
Datasets:
SZLHOLDINGS
/
amaru-source
like
0
Follow
SZL Holdings
1
Tasks:
Other
Languages:
English
Size:
n<1K
Tags:
formal-verification
lean4
mathlib
dsse
governance
agentic-ai
+ 11
License:
apache-2.0
Dataset card
Files
Files and versions
xet
Community
main
amaru-source
/
web
/
src
/
_stubs
/
shared-ui
/
skeleton.tsx
betterwithage
sync: mirror szl-holdings/amaru@fc94ee0
ee36b84
verified
3 days ago
raw
Copy download link
history
blame
contribute
delete
220 Bytes
import
*
as
React
from
'react'
;
export
function
Skeleton
(
{ className =
''
, ...props }: React.HTMLAttributes<HTMLDivElement>
) {
return
<
div
className
=
{
`
animate-pulse
rounded-md
bg-muted
${
className
}`} {
...props
} />
;
}