status-web/packages/icons/src/superscript-icon.tsx

26 lines
935 B
XML

import { createIcon } from '../lib/create-icon'
const SvgSuperscriptIcon = createIcon(props => {
return (
<svg
{...props}
xmlns="http://www.w3.org/2000/svg"
width={props.width}
height={props.height}
fill="none"
viewBox="0 0 20 20"
focusable={false}
aria-hidden={true}
>
<path
fill={props.color}
fillRule="evenodd"
d="M12.899 10.3v-.794a14.948 14.948 0 0 0 1.992-1.614c.647-.626.877-1.099.877-1.741 0-.643-.32-.997-.894-.997-.582 0-.926.371-.926.955 0 .143.016.32.057.515l-1.016-.101a1.902 1.902 0 0 1-.058-.465c0-1.073.763-1.758 1.992-1.758 1.205 0 1.918.65 1.918 1.8 0 .811-.369 1.504-1.164 2.248-.41.38-.844.718-1.41 1.082H16.9v.87h-4Zm-1.023-5.8h-1.442L7.488 8.918 4.542 4.5H3.1L6.767 10 3.1 15.5h1.442l2.946-4.418 2.945 4.418h1.443L8.209 10l3.667-5.5Z"
clipRule="evenodd"
/>
</svg>
)
})
export default SvgSuperscriptIcon