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
16 lines
501 B
TypeScript
16 lines
501 B
TypeScript
import React from 'react';
|
|
|
|
function Html(
|
|
props: JSX.IntrinsicAttributes & React.SVGProps<SVGSVGElement>
|
|
): JSX.Element {
|
|
return (
|
|
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512' {...props}>
|
|
<path d='M0 32l34.9 395.8L191.5 480l157.6-52.2L384 32H0zm308.2 127.9H124.4l4.1 49.4h175.6l-13.6 148.4-97.9 27v.3h-1.1l-98.7-27.3-6-75.8h47.7L138 320l53.5 14.5 53.7-14.5 6-62.2H84.3L71.5 112.2h241.1l-4.4 47.7z' />
|
|
</svg>
|
|
);
|
|
}
|
|
|
|
Html.displayName = 'Html';
|
|
|
|
export default Html;
|