Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | 1x 1x 1x 1x 1x | // THIS IS A GENERATED FILE, DO NOT EDIT
import * as React from 'react'
import { Icon, IconSize } from '../Icon'
const Info = React.forwardRef<
SVGSVGElement,
{ size?: IconSize } & React.SVGAttributes<SVGElement>
>(function Info(props, ref) {
return (
<Icon {...props} name="Info">
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="currentColor"
xmlns="http://www.w3.org/2000/svg"
ref={ref}
>
<path
fillRule="evenodd"
clipRule="evenodd"
d="M22.5 12C22.5 17.799 17.799 22.5 12 22.5C6.20101 22.5 1.5 17.799 1.5 12C1.5 6.20101 6.20101 1.5 12 1.5C17.799 1.5 22.5 6.20101 22.5 12ZM13.8375 8.0625C13.8375 9.07732 13.0148 9.9 12 9.9C10.9852 9.9 10.1625 9.07732 10.1625 8.0625C10.1625 7.04768 10.9852 6.225 12 6.225C13.0148 6.225 13.8375 7.04768 13.8375 8.0625ZM13.5 18V11.25H10.5V18H13.5Z"
fill="currentColor"
/>
</svg>
</Icon>
)
})
Info.displayName = 'Info'
export default Info
|