(props: SVGProps<SVGSVGElement>)
| 2 | import type { SVGProps } from 'react' |
| 3 | |
| 4 | const FramerLogo = (props: SVGProps<SVGSVGElement>) => ( |
| 5 | <svg |
| 6 | viewBox="0 0 256 384" |
| 7 | width="1em" |
| 8 | height="1em" |
| 9 | xmlns="http://www.w3.org/2000/svg" |
| 10 | preserveAspectRatio="xMidYMid" |
| 11 | fill="currentColor" |
| 12 | {...props} |
| 13 | > |
| 14 | <path d="M0 0h256v128H128L0 0Zm0 128h128l128 128H128v128L0 256V128Z" /> |
| 15 | </svg> |
| 16 | ) |
| 17 | export default FramerLogo |
nothing calls this directly
no outgoing calls
no test coverage detected