import React from 'react'; const TripleStarsIcon = ({ className, colorLeft, colorRight, style, }: { className?: string; colorLeft?: string; colorRight?: string; style?: React.CSSProperties; }) => { // Default colors if not provided const leftColor = colorLeft || '#0494F7'; const rightColor = colorRight || '#CA08EA'; return ( ); }; export default TripleStarsIcon;