![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
@ant-design/pro-card
Advanced tools
@ant-design/pro-card is a component library that provides a set of card components for building complex card layouts in React applications. It is part of the Ant Design Pro ecosystem and is designed to work seamlessly with other Ant Design components.
Basic Card
This feature allows you to create a basic card with a title and bordered style. The card can contain any content inside it.
<ProCard title="Basic Card" bordered headerBordered>
<div>Content inside the card</div>
</ProCard>
Grid Card
This feature allows you to create a grid layout within a card. You can specify the number of columns and their span to organize content in a structured manner.
<ProCard title="Grid Card" gutter={16} layout="center">
<ProCard colSpan={8}>Column 1</ProCard>
<ProCard colSpan={8}>Column 2</ProCard>
<ProCard colSpan={8}>Column 3</ProCard>
</ProCard>
Tabbed Card
This feature allows you to create a card with tabs. Each tab can contain different content, making it easy to organize information in a compact space.
<ProCard tabs={{ type: 'card', items: [
{ key: 'tab1', tab: 'Tab 1', children: <div>Content of Tab 1</div> },
{ key: 'tab2', tab: 'Tab 2', children: <div>Content of Tab 2</div> }
] }} />
React-Bootstrap is a popular library that provides Bootstrap components as React components. It offers a Card component similar to @ant-design/pro-card, but with a different styling approach based on Bootstrap's design system.
Material-UI (now MUI) is a comprehensive library of React components that implement Google's Material Design. It includes a Card component that offers similar functionality to @ant-design/pro-card, with a focus on Material Design aesthetics.
Semantic UI React is the official React integration for Semantic UI. It provides a Card component that allows for similar card-based layouts, but with Semantic UI's unique design language and features.
@ant-design/pro-card.
See our website @ant-design/pro-card for more information.
Using npm:
$ npm install --save @ant-design/pro-card
or using yarn:
$ yarn add @ant-design/pro-card
FAQs
@ant-design/pro-card
The npm package @ant-design/pro-card receives a total of 14,369 weekly downloads. As such, @ant-design/pro-card popularity was classified as popular.
We found that @ant-design/pro-card demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.