New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@asphalt-react/card

Package Overview
Dependencies
Maintainers
0
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@asphalt-react/card

Card

  • 2.0.1
  • latest
  • npm
  • Socket score

Version published
Maintainers
0
Created
Source

Card

npm

A Card is container to display related pieces of information in a single unit. Cards also provide summary of the information and a linked entry point to further details of that content. Few uses of Card is to show movie titles on an OTT platform, product on an e-commerce website, feed of posts or articles on a website.

Card expands to occupy all available horizontal within its container by default, you can change it to fit the content as well. Card comes in three sizes small (s), medium (m) & large (l).

Usage

import { Card } from "@asphalt-react/card"

function App() {
  return (
    <Card>
      <div>Content</div>
    </Card>
  )
}

Variants

Card have two variants -

  1. Elevated - Card appears with shadow around it, which makes it visually distinct from the container surface and has more emphasis.

  2. Outlined - Card appears with border around it, has less emphasis that the elevated variant.

Card can also appears without shadow and border to have more subdued look and minimal emphasis.

If values for none of them is set, then the Card will appear in the elevated variant.

Supported intents

  • primary

  • secondary

  • tertiary

  • success

  • info

  • warning

  • danger

  • brand

  • inverse

Props

children

Node for card content.

typerequireddefault
nodetrueN/A

size

Controls size of card. Possible values are "s", "m" & "l" for small, medium & large respectively.

typerequireddefault
enumfalse"m"

outlined

Adds outline around card.

typerequireddefault
boolfalsenull

elevated

Elevates the card from the container surface.

typerequireddefault
boolfalsenull

bezel

Adds padding inside card.

typerequireddefault
boolfalsetrue

fitWidth

Adjusts the width of the card as per its content.

typerequireddefault
boolfalsefalse

primary

Applies primary intent.

typerequireddefault
boolfalsefalse

secondary

Applies secondary intent.

typerequireddefault
boolfalsefalse

tertiary

Applies tertiary intent.

typerequireddefault
boolfalsefalse

brand

Applies brand intent.

typerequireddefault
boolfalsefalse

inverse

Applies inverse intent.

typerequireddefault
boolfalsefalse

danger

Applies danger intent.

typerequireddefault
boolfalsefalse

warning

Applies warning intent.

typerequireddefault
boolfalsefalse

success

Applies success intent.

typerequireddefault
boolfalsefalse

info

Applies info intent.

typerequireddefault
boolfalsefalse

Keywords

FAQs

Package last updated on 14 Feb 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc