
Security News
OWASP 2025 Top 10 Adds Software Supply Chain Failures, Ranked Top Community Concern
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.
@react-md/card
Advanced tools
This package is for creating interactable cards from the material design guidelines.
npm install --save @react-md/card
It is also recommended to install the following packages as they work hand-in-hand with this package:
npm install --save @react-md/theme \
@react-md/typography \
@react-md/icon \
@react-md/media \
@react-md/avatar \
@react-md/button \
@react-md/transition
You should check out the full documentation for live examples and more customization information, but an example usage is shown below.
import { Fragment } from "react";
import { render } from "react-dom";
import { Button } from "@react-md/button";
import { Card, CardHeader, CardTitle, CardSubtitle, CardActions } from "@react-md/card"
import { Typography } from "@react-md/typography"
const App = () => (
<Card>
<CardHeader>
<CardTitle>Card Title</CardTitle>
</CardHeader>
<CardContent>
<Typography>Here is some text to display in the card. It is
</CardContent>
<CardActions>
<Button>Action 1</Button>
<Button<Action 2</Button>
</CardActions>
</Card>
);
render(<App />, document.getElementById("root"));
FAQs
Create interactable cards from the material design specifications.
The npm package @react-md/card receives a total of 666 weekly downloads. As such, @react-md/card popularity was classified as not popular.
We found that @react-md/card demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Security News
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.