dde272c4b8
i18n - Build Validation / Validate i18n Builds (24) (push) Has been cancelled
CI - Node.js / Lint (24) (push) Has been cancelled
CI - Node.js / Build (24) (push) Has been cancelled
CI - Node.js / Test (24) (push) Has been cancelled
CI - Node.js / Test - Upcoming Changes (24) (push) Has been cancelled
CI - Node.js / Test - i18n (italian, 24) (push) Has been cancelled
CI - Node.js / Test - i18n (portuguese, 24) (push) Has been cancelled
CD - Docker - GHCR Images / Build and Push Images (push) Has been cancelled
24 lines
526 B
TypeScript
24 lines
526 B
TypeScript
import React from 'react';
|
|
|
|
function Caret(): JSX.Element {
|
|
return (
|
|
<svg viewBox='0 0 100 100' width='25px'>
|
|
<polygon
|
|
points='-6.04047,17.1511 81.8903,58.1985 -3.90024,104.196'
|
|
style={{
|
|
stroke: 'var(--primary-color)',
|
|
fill: 'var(--primary-color)',
|
|
strokeWidth: '1px'
|
|
}}
|
|
transform={
|
|
'matrix(0.999729, 0.023281, -0.023281, 0.999729, 7.39321, -10.0425)'
|
|
}
|
|
/>
|
|
</svg>
|
|
);
|
|
}
|
|
|
|
Caret.displayName = 'Caret';
|
|
|
|
export default Caret;
|