aboutsummaryrefslogblamecommitdiffstats
path: root/packages/react-docs/src/components/source_link.tsx
blob: 89956a507470df7c146025af16dd2b9d3dd48db5 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                                 
                            
                               
 


                                  
                   
                      



                                                    
                             
                                                                            
            

                                                                                                         




                      
import { colors } from '@0xproject/react-shared';
import * as _ from 'lodash';
import * as React from 'react';

import { Source } from '../types';

export interface SourceLinkProps {
    source: Source;
    sourceUrl: string;
    version: string;
}

export function SourceLink(props: SourceLinkProps) {
    const src = props.source;
    const sourceCodeUrl = `${props.sourceUrl}/${src.fileName}#L${src.line}`;
    return (
        <div className="pt2" style={{ fontSize: 14 }}>
            <a href={sourceCodeUrl} target="_blank" className="underline" style={{ color: colors.grey }}>
                Source
            </a>
        </div>
    );
}