mirror of
https://github.com/fergalmoran/supanextail.git
synced 2025-12-31 13:47:45 +00:00
17 lines
422 B
JavaScript
17 lines
422 B
JavaScript
/*
|
|
This card is used on the landing page
|
|
*/
|
|
|
|
import { FiStar } from 'react-icons/fi';
|
|
|
|
const KeyFeature = (props) => (
|
|
<div className="shadow-sm p-5 mb-5 bg-base-100 flex italic">
|
|
<div className="p-2 bg-accent-focus w-12 h-12 text-white rounded-sm my-auto flex">
|
|
<FiStar className="text-2xl m-auto" />
|
|
</div>
|
|
<div className="m-auto ml-3">{props.children}</div>
|
|
</div>
|
|
);
|
|
|
|
export default KeyFeature;
|