Nextjs Core Cards
-
Pro Component
Our cards provide a flexible and extensible content container with
multiple variants and options.
Style
You will find the styles for this component in
assets/jss/nextjs-material-dashboard-pro/components/cardAvatarStyle.js
and
assets/jss/nextjs-material-dashboard/components/cardAvatarStyle.js
components/Card/CardAvatar.js
assets/jss/nextjs-material-dashboard-pro/components/cardBodyStyle.js
and
assets/jss/nextjs-material-dashboard/components/cardBodyStyle.js
components/Card/CardBody.js
assets/jss/nextjs-material-dashboard-pro/components/cardFooterStyle.js
and
assets/jss/nextjs-material-dashboard/components/cardFooterStyle.js
components/Card/CardFooter.js
assets/jss/nextjs-material-dashboard-pro/components/cardHeaderStyle.js
and
assets/jss/nextjs-material-dashboard/components/cardHeaderStyle.js
components/Card/CardHeader.js
assets/jss/nextjs-material-dashboard-pro/components/cardIconStyle.js
and
assets/jss/nextjs-material-dashboard/components/cardIconStyle.js
components/Card/CardIcon.js
assets/jss/nextjs-material-dashboard-pro/components/cardStyle.js
and
assets/jss/nextjs-material-dashboard/components/cardStyle.js
assets/jss/nextjs-material-dashboard-pro/components/cardTextStyle.js
PRO
components/Card/CardText.js
Examples
Below is an example of a basic card with mixed content and a fixed
width. Cards have no fixed width to start, so they’ll naturally fill
the full width of its parent element.
Card title
Some quick example text to build on the card title and make up
the bulk of the card's content.
Go somewhere
import React from " react " ;
// @material-ui/core components
import { makeStyles } from " @material-ui/core/styles " ;
// core components
import Button from " components/CustomButtons/Button.js " ;
import Card from " components/Card/Card.js " ;
import CardBody from " components/Card/CardBody.js " ;
import styles from " assets/jss/nextjs-material-dashboard-pro/cardImagesStyles.js " ;
const useStyles = makeStyles ( styles );
const cardStyle = { width : " 20rem " };
const cardImgTopStyle = { height : " 180px " , width : " 100% " , display : " block " };
export default function CardBasic () {
const classes = useStyles ();
return (
< Card style = { cardStyle } >
< img
className = { classes . cardImgTop }
data - src = " holder.js/100px180/ "
alt = " 100%x180 "
style = { cardImgTopStyle }
src = " data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%22320%22%20height%3D%22180%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20320%20180%22%20preserveAspectRatio%3D%22none%22%3E%3Cdefs%3E%3Cstyle%20type%3D%22text%2Fcss%22%3E%23holder_163df23d717%20text%20%7B%20fill%3Argba(255%2C255%2C255%2C.75)%3Bfont-weight%3Anormal%3Bfont-family%3AHelvetica%2C%20monospace%3Bfont-size%3A16pt%20%7D%20%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cg%20id%3D%22holder_163df23d717%22%3E%3Crect%20width%3D%22320%22%20height%3D%22180%22%20fill%3D%22%23777%22%3E%3C%2Frect%3E%3Cg%3E%3Ctext%20x%3D%22119.0859375%22%20y%3D%2297.35%22%3E320x180%3C%2Ftext%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E "
data - holder - rendered = " true "
/>
< CardBody >
< h4 > Card title < /h4 >
< p >
Some quick example text to build on the card title and make up the
bulk of the card ' s content.
</p>
<Button color="primary">Go somewhere</Button>
</CardBody>
</Card>
);
}
Content Types
CardBody
The building block of a
Card
is
the
CardBody
.
Use it whenever you need a padded section within a card.
This is some text within a card body.
import React from " react " ;
// core components
import Card from " components/Card/Card.js " ;
import CardBody from " components/Card/CardBody.js " ;
export default function Example () {
return (
< Card >
< CardBody > This is some text within a card body . < /CardBody >
< /Card >
);
}
Titles, text, and links
Card titles are used by adding
classes.cardTitle
to a
<h*>
tag. In the same way, links are added and placed next to each other
by adding
classes.cardLink
to an
<a>
tag.
Subtitles are used by adding a
classes.cardSubtitle
to a
<h*>
tag. If the
classes.cardTitle
and the
classes.cardSubtitle
items are placed in a
CardBody
item, the card title and subtitle are aligned nicely.
Card title
Card subtitle
Some quick example text to build on the card title and make up
the bulk of the card's content.
Card link
Another link
import React from " react " ;
// @material-ui/core components
import { makeStyles } from " @material-ui/core/styles " ;
// core components
import Card from " components/Card/Card.js " ;
import CardBody from " components/Card/CardBody.js " ;
import Muted from " components/Typography/Muted.js " ;
import {
cardTitle ,
cardSubtitle ,
cardLink
} from " assets/jss/material-dashboard-material-ui-v4-pro-react.js " ;
const styles = {
cardTitle ,
cardSubtitle ,
cardLink
};
const useStyles = makeStyles ( styles );
const cardStyle = { width : " 20rem " };
export default function CardTitlesTextLinks () {
const classes = useStyles ();
return (
< Card style = { cardStyle } >
< CardBody >
< h4 className = { classes . cardTitle } > Card title < /h4 >
< Muted >
< h6 className = { classes . cardSubtitle } > Card subtitle < /h6 >
< /Muted >
< p >
Some quick example text to build on the card title and make up the
bulk of the card ' s content.
</p>
<a
href="#pablo"
className={classes.cardLink}
onClick={e => e.preventDefault()}
>
Card link
</a>
<a
href="#pablo"
className={classes.cardLink}
onClick={e => e.preventDefault()}
>
Another link
</a>
</CardBody>
</Card>
);
}
Images
classes.cardImgTop
places an image to the top of the card.
classes.cardImgBototm
places an image to the top of the card.
Some quick example text to build on the card title and make up
the bulk of the card's content.
Go somewhere
Some quick example text to build on the card title and make up
the bulk of the card's content.
Card title
This is a wider card with supporting text below as a natural
lead-in to additional content. This content is a little bit
longer.
Last updated 3 mins ago
import React from " react " ;
// @material-ui/core components
import { makeStyles } from " @material-ui/core/styles " ;
// core components
import Button from " components/CustomButtons/Button.js " ;
import Card from " components/Card/Card.js " ;
import CardBody from " components/Card/CardBody.js " ;
import cardImagesStyles from " assets/jss/nextjs-material-dashboard-pro/cardImagesStyles.js " ;
const styles = {
... cardImagesStyles ,
textWhite : {
" &, & * " : {
color : " #FFF "
}
}
};
const useStyles = makeStyles ( styles );
const cardStyle = { width : " 20rem " };
const cardImgTopStyle = { height : " 180px " , width : " 100% " , display : " block " };
const cardImgBottomStyle = { height : " 180px " , width : " 100% " , display : " block " };
const cardImgStyle = { height : " 270px " , width : " 100% " , display : " block " };
export default function CardsImages () {
const classes = useStyles ();
return (
< div >
< Card style = { cardStyle } >
< img
className = { classes . cardImgTop }
data - src = " holder.js/100px180/ "
alt = " 100%x180 "
style = { cardImgTopStyle }
src = " data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%22320%22%20height%3D%22180%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20320%20180%22%20preserveAspectRatio%3D%22none%22%3E%3Cdefs%3E%3Cstyle%20type%3D%22text%2Fcss%22%3E%23holder_163df23d717%20text%20%7B%20fill%3Argba(255%2C255%2C255%2C.75)%3Bfont-weight%3Anormal%3Bfont-family%3AHelvetica%2C%20monospace%3Bfont-size%3A16pt%20%7D%20%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cg%20id%3D%22holder_163df23d717%22%3E%3Crect%20width%3D%22320%22%20height%3D%22180%22%20fill%3D%22%23777%22%3E%3C%2Frect%3E%3Cg%3E%3Ctext%20x%3D%22119.0859375%22%20y%3D%2297.35%22%3E320x180%3C%2Ftext%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E "
data - holder - rendered = " true "
/>
< CardBody >
< p >
Some quick example text to build on the card title and make up the
bulk of the card ' s content.
</p>
<Button color="primary">Go somewhere</Button>
</CardBody>
</Card>
<br />
<Card style={cardStyle}>
<CardBody>
<p>
Some quick example text to build on the card title and make up the
bulk of the card ' s content .
< /p >
< /CardBody >
< img
className = { classes . cardImgBottom }
data - src = " holder.js/100px180/ "
alt = " 100%x180 "
style = { cardImgBottomStyle }
src = " data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%22320%22%20height%3D%22180%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20320%20180%22%20preserveAspectRatio%3D%22none%22%3E%3Cdefs%3E%3Cstyle%20type%3D%22text%2Fcss%22%3E%23holder_163df23d717%20text%20%7B%20fill%3Argba(255%2C255%2C255%2C.75)%3Bfont-weight%3Anormal%3Bfont-family%3AHelvetica%2C%20monospace%3Bfont-size%3A16pt%20%7D%20%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cg%20id%3D%22holder_163df23d717%22%3E%3Crect%20width%3D%22320%22%20height%3D%22180%22%20fill%3D%22%23777%22%3E%3C%2Frect%3E%3Cg%3E%3Ctext%20x%3D%22119.0859375%22%20y%3D%2297.35%22%3E320x180%3C%2Ftext%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E "
data - holder - rendered = " true "
/>
< /Card >
< br />
< Card className = { classes . textWhite } >
< div className = { classes . cardImgOverlay } >
< h4 > Card title < /h4 >
< p >
This is a wider card with supporting text below as a natural lead - in
to additional content . This content is a little bit longer .
< /p >
< p > Last updated 3 mins ago < /p >
< /div >
< img
className = { classes . cardImg }
data - src = " holder.js/100px270/#55595c:#373a3c/text:Card image "
alt = " 100%x270 "
style = { cardImgStyle }
src = " data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%22843%22%20height%3D%22270%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20843%20270%22%20preserveAspectRatio%3D%22none%22%3E%3Cdefs%3E%3Cstyle%20type%3D%22text%2Fcss%22%3E%23holder_163df50ef51%20text%20%7B%20fill%3Argba(255%2C255%2C255%2C.75)%3Bfont-weight%3Anormal%3Bfont-family%3AHelvetica%2C%20monospace%3Bfont-size%3A42pt%20%7D%20%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cg%20id%3D%22holder_163df50ef51%22%3E%3Crect%20width%3D%22843%22%20height%3D%22270%22%20fill%3D%22%23777%22%3E%3C%2Frect%3E%3Cg%3E%3Ctext%20x%3D%22314.0703125%22%20y%3D%22154.35%22%3E843x270%3C%2Ftext%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E "
data - holder - rendered = " true "
/>
< /Card >
< /div >
);
}
The place is close to Barceloneta Beach and bus stop just 2
min by walk and near to "Naviglio" where you can enjoy the
main night life in Barcelona...
The place is close to Barceloneta Beach and bus stop just 2
min by walk and near to "Naviglio" where you can enjoy the
main night life in Barcelona...
Here is the Icon
The place is close to Barceloneta Beach and bus stop just 2
min by walk and near to "Naviglio" where you can enjoy the
main night life in Barcelona...
The place is close to Barceloneta Beach and bus stop just 2
min by walk and near to "Naviglio" where you can enjoy the
main night life in Barcelona...
import React from " react " ;
// material-ui
import { makeStyles } from " @material-ui/core/styles " ;
// @material-ui/icons
import Language from " @material-ui/icons/Language " ;
// core components
import GridContainer from " components/Grid/GridContainer.js " ;
import GridItem from " components/Grid/GridItem.js " ;
import Card from " components/Card/Card.js " ;
import CardBody from " components/Card/CardBody.js " ;
import CardHeader from " components/Card/CardHeader.js " ;
import CardIcon from " components/Card/CardIcon.js " ;
import CardText from " components/Card/CardText.js " ;
import dashboardStyle from " assets/jss/nextjs-material-dashboard-pro/views/dashboardStyle " ;
import loginPageStyle from " assets/jss/nextjs-material-dashboard-pro/views/loginPageStyle " ;
var styles = {
... dashboardStyle ,
... loginPageStyle ,
cardTitle : {
marginTop : " 0 " ,
minHeight : " auto " ,
fontWeight : " 300 " ,
fontFamily : " 'Roboto', 'Helvetica', 'Arial', sans-serif " ,
marginBottom : " 3px " ,
textDecoration : " none "
}
};
const useStyles = makeStyles ( styles );
export default function CardHeaderTypes ( props ) {
const classes = useStyles ();
return (
< div >
< GridContainer >
< GridItem xs = { 12 } sm = { 12 } md = { 6 } >
< Card >
< CardHeader >
< h4 className = { classes . cardTitle } > Regular header < /h4 >
< p > Category subtitle < /p >
< /CardHeader >
< CardBody >
The place is close to Barceloneta Beach and bus stop just 2 min by
walk and near to " Naviglio " where you can enjoy the main night
life in Barcelona ...
< /CardBody >
< /Card >
< /GridItem >
< GridItem xs = { 12 } sm = { 12 } md = { 6 } >
< Card >
< CardHeader color = " danger " >
< h4 className = { classes . cardTitle } > Full header coloured < /h4 >
< p > Category subtitle < /p >
< /CardHeader >
< CardBody >
The place is close to Barceloneta Beach and bus stop just 2 min by
walk and near to " Naviglio " where you can enjoy the main night
life in Barcelona ...
< /CardBody >
< /Card >
< /GridItem >
< /GridContainer >
< GridContainer >
< GridItem xs = { 12 } sm = { 12 } md = { 6 } >
< Card >
< CardHeader color = " rose " icon >
< CardIcon color = " rose " >
< Language />
< /CardIcon >
< /CardHeader >
< CardBody >
< h4 className = { classes . cardTitle } > Here is the Icon < /h4 >
The place is close to Barceloneta Beach and bus stop just 2 min by
walk and near to " Naviglio " where you can enjoy the main night
life in Barcelona ...
< /CardBody >
< /Card >
< /GridItem >
< GridItem xs = { 12 } sm = { 12 } md = { 6 } >
< Card >
< CardHeader color = " primary " text >
< CardText color = " primary " >
< h4 className = { classes . cardTitle } > Here is the Text < /h4 >
< p className = " card-category " > Category subtitle < /p >
< /CardText >
< /CardHeader >
< CardBody >
The place is close to Barceloneta Beach and bus stop just 2 min by
walk and near to " Naviglio " where you can enjoy the main night
life in Barcelona ...
< /CardBody >
< /Card >
< /GridItem >
< /GridContainer >
< /div >
);
}
Cards with Charts in them
Straight Lines Chart
Line Chart with Points
Simple Bar Chart
Bar Chart
import React from " react " ;
// react plugin for creating charts
import ChartistGraph from " react-chartist " ;
// @material-ui/core components
import { makeStyles } from " @material-ui/core/styles " ;
// core components
import GridContainer from " components/Grid/GridContainer.js " ;
import GridItem from " components/Grid/GridItem.js " ;
import Card from " components/Card/Card.js " ;
import CardHeader from " components/Card/CardHeader.js " ;
import CardBody from " components/Card/CardBody.js " ;
import { straightLinesChart , simpleBarChart } from " variables/charts.js " ;
import styles from " assets/jss/nextjs-material-dashboard-pro/views/chartsStyle.js " ;
const useStyles = makeStyles ( styles );
export default function CardChart () {
const classes = useStyles ();
return (
< GridContainer >
< GridItem xs = { 12 } sm = { 12 } md = { 6 } >
< Card chart >
< CardHeader color = " warning " >
< ChartistGraph
className = " ct-chart-white-colors "
data = { straightLinesChart . data }
type = " Line "
options = { straightLinesChart . options }
listener = { straightLinesChart . animation }
/ >
< /CardHeader >
< CardBody >
< h4 className = { classes . cardTitle } > Straight Lines Chart < /h4 >
< p className = { classes . cardCategory } > Line Chart with Points < /p >
< /CardBody >
< /Card >
< /GridItem >
< GridItem xs = { 12 } sm = { 12 } md = { 6 } >
< Card chart >
< CardHeader color = " info " >
< ChartistGraph
className = " ct-chart-white-colors "
data = { simpleBarChart . data }
type = " Bar "
options = { simpleBarChart . options }
responsiveOptions = { simpleBarChart . responsiveOptions }
listener = { simpleBarChart . animation }
/ >
< /CardHeader >
< CardBody >
< h4 className = { classes . cardTitle } > Simple Bar Chart < /h4 >
< p className = { classes . cardCategory } > Bar Chart < /p >
< /CardBody >
< /Card >
< /GridItem >
< /GridContainer >
);
}
Cards with Animation PRO
We’ve created some special cards that can have actions under the
header, you can activate those cards by adding some special classes
on the
Card
and
CardHeader
components, special classes that you need to import from
assets/jss/nextjs-material-dashboard-pro/hoverCardStyle.js
.
build Fix Header!
refresh
edit
Daily Sales
arrow_upward 55%
increase in today sales.
import React from " react " ;
// react plugin for creating charts
import ChartistGraph from " react-chartist " ;
// @material-ui/core components
import { makeStyles } from " @material-ui/core/styles " ;
import Tooltip from " @material-ui/core/Tooltip " ;
// @material-ui/icons
import ArrowUpward from " @material-ui/icons/ArrowUpward " ;
import AccessTime from " @material-ui/icons/AccessTime " ;
import Refresh from " @material-ui/icons/Refresh " ;
import Edit from " @material-ui/icons/Edit " ;
// core components
import GridContainer from " components/Grid/GridContainer.js " ;
import GridItem from " components/Grid/GridItem.js " ;
import Button from " components/CustomButtons/Button.js " ;
import Card from " components/Card/Card.js " ;
import CardHeader from " components/Card/CardHeader.js " ;
import CardBody from " components/Card/CardBody.js " ;
import CardFooter from " components/Card/CardFooter.js " ;
import { completedTasksChart } from " variables/charts " ;
import styles from " assets/jss/nextjs-material-dashboard-pro/views/dashboardStyle " ;
const useStyles = makeStyles ( styles );
export default function CardsWithAnimation () {
const classes = useStyles ();
const tooltipClasses = { tooltip : classes . tooltip };
return (
< div >
< GridContainer >
< GridItem xs = { 12 } sm = { 12 } md = { 12 } >
< Card chart className = { classes . cardHover } >
< CardHeader color = " rose " className = { classes . cardHeaderHover } >
< ChartistGraph
className = " ct-chart-white-colors "
data = { completedTasksChart . data }
type = " Line "
options = { completedTasksChart . options }
listener = { completedTasksChart . animation }
/ >
< /CardHeader >
< CardBody >
< div className = { classes . cardHoverUnder } >
< Tooltip
id = " tooltip-top "
title = " Refresh "
placement = " bottom "
classes = { tooltipClasses }
>
< Button simple color = " info " justIcon >
< Refresh className = { classes . underChartIcons } / >
< /Button >
< /Tooltip >
< Tooltip
id = " tooltip-top "
title = " Change Date "
placement = " bottom "
classes = { tooltipClasses }
>
< Button color = " transparent " simple justIcon >
< Edit className = { classes . underChartIcons } / >
< /Button >
< /Tooltip >
< /div >
< h4 className = { classes . cardTitle } > Daily Sales < /h4 >
< p className = { classes . cardCategory } >
< span className = { classes . successText } >
< ArrowUpward className = { classes . upArrowCardCategory } /> 55 %
< /span>{" " }
increase in today sales .
< /p >
< /CardBody >
< CardFooter chart >
< div className = { classes . stats } >
< AccessTime /> updated 4 minutes ago
< /div >
< /CardFooter >
< /Card >
< /GridItem >
< /GridContainer >
< /div >
);
}
Text alignment
You can quickly change the text alignment of any card—in its
entirety or specific parts—with our text align classes.
Special title treatment
With supporting text below as a natural lead-in to additional
content.
Go somewhere
Special title treatment
With supporting text below as a natural lead-in to additional
content.
Go somewhere
Special title treatment
With supporting text below as a natural lead-in to additional
content.
Go somewhere
import React from " react " ;
// @material-ui/core components
import { makeStyles } from " @material-ui/core/styles " ;
// core components
import Button from " components/CustomButtons/Button.js " ;
import Card from " components/Card/Card.js " ;
import CardBody from " components/Card/CardBody.js " ;
import { cardTitle } from " assets/jss/material-dashboard-material-ui-v4-pro-react.js " ;
const styles = {
cardTitle ,
textCenter : {
textAlign : " center "
},
textRight : {
textAlign : " right "
}
};
const useStyles = makeStyles ( styles );
const cardStyle = { width : " 20rem " };
export default function CardsImages () {
const classes = useStyles ();
return (
< div >
< Card style = { cardStyle } >
< CardBody >
< h4 className = { classes . cardTitle } > Special title treatment < /h4 >
< p >
With supporting text below as a natural lead - in to additional
content .
< /p >
< Button color = " primary " > Go somewhere < /Button >
< /CardBody >
< /Card >
< Card className = { classes . textCenter } style = { cardStyle } >
< CardBody >
< h4 className = { classes . cardTitle } > Special title treatment < /h4 >
< p >
With supporting text below as a natural lead - in to additional
content .
< /p >
< Button color = " primary " > Go somewhere < /Button >
< /CardBody >
< /Card >
< Card className = { classes . textRight } style = { cardStyle } >
< CardBody >
< h4 className = { classes . cardTitle } > Special title treatment < /h4 >
< p >
With supporting text below as a natural lead - in to additional
content .
< /p >
< Button color = " primary " > Go somewhere < /Button >
< /CardBody >
< /Card >
< /div >
);
}
Props
Card
Card . propTypes = {
className : PropTypes . string ,
plain : PropTypes . bool ,
profile : PropTypes . bool ,
blog : PropTypes . bool ,
raised : PropTypes . bool ,
background : PropTypes . bool ,
pricing : PropTypes . bool ,
testimonial : PropTypes . bool ,
color : PropTypes . oneOf ([
" primary " ,
" info " ,
" success " ,
" warning " ,
" danger " ,
" rose " ,
]),
product : PropTypes . bool ,
chart : PropTypes . bool ,
login : PropTypes . bool ,
children : PropTypes . node ,
};
CardAvatar
CardAvatar . propTypes = {
children : PropTypes . node . isRequired ,
className : PropTypes . string ,
profile : PropTypes . bool ,
plain : PropTypes . bool ,
testimonial : PropTypes . bool ,
testimonialFooter : PropTypes . bool ,
};
CardBody
CardBody . propTypes = {
className : PropTypes . string ,
background : PropTypes . bool ,
plain : PropTypes . bool ,
formHorizontal : PropTypes . bool ,
pricing : PropTypes . bool ,
signup : PropTypes . bool ,
color : PropTypes . bool ,
profile : PropTypes . bool ,
calendar : PropTypes . bool ,
children : PropTypes . node ,
};
CardFooter . propTypes = {
className : PropTypes . string ,
plain : PropTypes . bool ,
profile : PropTypes . bool ,
pricing : PropTypes . bool ,
testimonial : PropTypes . bool ,
stats : PropTypes . bool ,
chart : PropTypes . bool ,
product : PropTypes . bool ,
children : PropTypes . node ,
};
CardHeader . propTypes = {
className : PropTypes . string ,
color : PropTypes . oneOf ([
" warning " ,
" success " ,
" danger " ,
" info " ,
" primary " ,
" rose " ,
" dark " ,
]),
plain : PropTypes . bool ,
image : PropTypes . bool ,
contact : PropTypes . bool ,
signup : PropTypes . bool ,
stats : PropTypes . bool ,
icon : PropTypes . bool ,
text : PropTypes . bool ,
children : PropTypes . node ,
};
CardIcon
CardIcon . propTypes = {
className : PropTypes . string ,
color : PropTypes . oneOf ([
" warning " ,
" success " ,
" danger " ,
" info " ,
" primary " ,
" rose " ,
" dark " ,
]),
children : PropTypes . node ,
};
CardText PRO
CardText . propTypes = {
className : PropTypes . string ,
color : PropTypes . oneOf ([
" warning " ,
" success " ,
" danger " ,
" info " ,
" primary " ,
" rose " ,
]),
children : PropTypes . node ,
};