This repository has been archived on 2022-08-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
outline/shared/components/OutlineLogo/index.js
2018-11-20 21:12:17 -08:00

10 lines
200 B
JavaScript

// @flow
import * as React from 'react';
import logo from './logo.png';
function OutlineLogo() {
return <img src={logo} width={16} height={16} alt="Outline Logo" />;
}
export default OutlineLogo;