
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
@inkdes-email/card
Advanced tools
Card component for email.
# pnpm
pnpm add @inkdes-email/card
# npm
npm install @inkdes-email/card
# yarn
yarn add @inkdes-email/card
import { Text } from "@inkdes-email/components";
import { Card } from "@inkdes-email/card";
export default function EmailTemplate() {
return <>
<Card
header={<Text>Some header</Text>}
content={<Text>Some content</Text>}
footer={<Text>Some footer</Text>}
headerBackgroundColor='#fff'
contentBackgroundColor='#fff'
footerBackgroundColor='#fff'
borderRadius='24px'
padding='12px 15px'
width='100%'
spacing='20px'
/>
</>
}
| Name | Type | Required | Default | Description |
|---|---|---|---|---|
| header | React.ReactNode | No | — | |
| dir | "ltr" | "rtl" | No | Comes from wrapping Html component's dir context prop which is ltr | Text direction |
| spacing | string | No | Comes from wrapping Html component's defaultSpacing context prop which is 20px | Spacing bottom, by default comes from Html defaultSpacing prop |
| content | React.ReactNode | No | — | |
| footer | React.ReactNode | No | — | |
| headerBackgroundColor | string | No | #fff | — |
| contentBackgroundColor | string | No | #fff | — |
| footerBackgroundColor | string | No | #fff | — |
| borderRadius | string | No | 24px | — |
| padding | string | No | `` | inner padding |
| width | string | No | 100% | |
| headerCenter | boolean | No | undefined | |
| contentCenter | boolean | No | undefined | |
| footerCenter | boolean | No | undefined |
MIT © iClasser
FAQs
A React email card component to wrap emails (InkDes Mailer)
We found that @inkdes-email/card demonstrated a healthy version release cadence and project activity because the last version was released less than 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
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.