@codesinger0/shared-components 1.1.25 → 1.1.27

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  import React from 'react';
2
2
  import { motion } from 'framer-motion';
3
- import { Check } from 'lucide-react';
3
+ import { CircleCheck } from 'lucide-react';
4
4
 
5
5
  const TextListCards = ({
6
6
  title,
@@ -75,9 +75,9 @@ const TextListCards = ({
75
75
  {item.points && item.points.length > 0 && (
76
76
  <ul className="space-y-3 text-right leading-relaxed" dir="rtl">
77
77
  {item.points.map((point, i) => (
78
- <li key={i} className="flex items-start">
79
- <Check className="w-5 h-5 text-primary mt-1 ml-2 flex-shrink-0" />
80
- <span className="content-text">{point}</span>
78
+ <li key={i} className="flex flex-col items-center md:flex-row md:items-start">
79
+ <CircleCheck className="w-5 h-5 text-primary-dark mb-1 md:mb-0 md:mt-1 md:ml-2 flex-shrink-0" />
80
+ <span className="content-text text-center md:text-right">{point}</span>
81
81
  </li>
82
82
  ))}
83
83
  </ul>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codesinger0/shared-components",
3
- "version": "1.1.25",
3
+ "version": "1.1.27",
4
4
  "description": "Shared React components for customer projects",
5
5
  "main": "dist/index.js",
6
6
  "files": [