Add Featured Icon

This commit is contained in:
Rafael 2022-02-02 14:58:05 -03:00 committed by Thomas Zarebczan
parent 63a3602464
commit 9b7dbc97b2
2 changed files with 30 additions and 0 deletions

View file

@ -2716,4 +2716,33 @@ export const icons = {
<path d="M23.5,12.11a7,7,0,0,1-3.27,5.59.26.26,0,0,1-.32,0,.27.27,0,0,1-.05-.31A2.71,2.71,0,0,0,20,17c.65-1.4.5-2.85-.34-3.25s-2,.41-2.67,1.77c.06-.93-.26-1.7-.86-1.88-1.27-.4-1.77,1.24-4.17,5.44-2.44-4.27-2.9-5.84-4.17-5.44-.6.18-.92.95-.86,1.88-.66-1.36-1.84-2.15-2.67-1.77S3.31,15.63,4,17a2.71,2.71,0,0,0,.18.34.27.27,0,0,1,0,.31.26.26,0,0,1-.32,0A7,7,0,0,1,.5,12.11C.5,8.93,3.17,6.18,7,4.9a.25.25,0,0,1,.32.3L7,6.73a3.37,3.37,0,0,0,.78,3,1,1,0,0,0,1.1.28,1,1,0,0,0,.65-.94V5.61a.25.25,0,0,1,.4-.2l1.6,1.2h1l1.6-1.2a.25.25,0,0,1,.4.2V9.05a1,1,0,0,0,.65.94,1,1,0,0,0,1.1-.28,3.35,3.35,0,0,0,.78-3L16.65,5.2A.25.25,0,0,1,17,4.9C20.83,6.18,23.5,8.93,23.5,12.11Z" />
</g>
),
[ICONS.FEATURED]: (props: IconProps) => {
const { size = 24, color = 'currentColor', ...otherProps } = props;
return (
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
width={size}
height={size}
fill="none"
stroke={color}
strokeWidth="1.5"
strokeLinecap="round"
strokeLinejoin="round"
{...otherProps}
>
<circle cx="11.06" cy="9" r="3" />
<path d="M14.03,9.53l4.53,4.531a1.414,1.414,0,0,1-2,2l-4.3-4.311" />
<line x1="8.939" y1="11.121" x2="13.181" y2="6.88" />
<line x1="15" y1="14.5" x2="15" y2="20.5" />
<line x1="13.5" y1="20.5" x2="16.5" y2="20.5" />
<ellipse cx="14.5" cy="21" rx="7.5" ry="2.5" />
<line x1="11.439" y1="14" x2="7.642" y2="19.987" />
<path d="M22,21,20.141,1.947a.5.5,0,0,0-.92-.219L15.561,7.5" />
<path d="M4.5,2.5A2.231,2.231,0,0,0,7,5c-1.615-.006-2.418.86-2.5,2.5A2.211,2.211,0,0,0,2,5,2.232,2.232,0,0,0,4.5,2.5Z" />
<path d="M14,.5A2.231,2.231,0,0,0,16.5,3c-1.615-.006-2.418.86-2.5,2.5A2.211,2.211,0,0,0,11.5,3,2.232,2.232,0,0,0,14,.5Z" />
</svg>
);
},
};

View file

@ -189,3 +189,4 @@ export const POP_CULTURE = 'Pop Culture';
export const ODYSEE_LOGO = 'OdyseeLogo';
export const ODYSEE_WHITE_TEXT = 'OdyseeLogoWhiteText';
export const ODYSEE_DARK_TEXT = 'OdyseeLogoDarkText';
export const FEATURED = 'Featured';