import * as React from 'react'; type PermaLinkProps = { onClick?: (event: React.MouseEvent) => void; }; // note(Keith): Do not replace with a styleguide-icon version. // None of the available options look quite right in docs. // This icon should instead be eventually added to @expo/styleguide-icons. const PermaLink = ({ onClick }: PermaLinkProps) => ( ); export default PermaLink;