File tree Expand file tree Collapse file tree 3 files changed +48
-1
lines changed
style/icon/language_icons Expand file tree Collapse file tree 3 files changed +48
-1
lines changed Original file line number Diff line number Diff line change @@ -74,7 +74,8 @@ import {
7474 coconutIcon ,
7575 sbtIcon ,
7676 rustIcon ,
77- qsharpIcon
77+ qsharpIcon ,
78+ sasIcon
7879} from './CodeSnippetLanguages' ;
7980
8081/**
@@ -1041,6 +1042,18 @@ export class CodeSnippetDisplay extends React.Component<
10411042 />
10421043 ) ;
10431044 }
1045+ case 'SAS' : {
1046+ return (
1047+ < sasIcon . react
1048+ tag = "span"
1049+ height = "16px"
1050+ width = "16px"
1051+ right = "7px"
1052+ top = "5px"
1053+ margin-right = "3px"
1054+ />
1055+ ) ;
1056+ }
10441057 case 'sbt' : {
10451058 return (
10461059 < sbtIcon . react
Original file line number Diff line number Diff line change @@ -32,6 +32,7 @@ import purescriptSVGstr from '../style/icon/language_icons/purescript.svg';
3232import qsharpSVGstr from '../style/icon/language_icons/qsharp.svg' ;
3333import rubySVGstr from '../style/icon/language_icons/ruby.svg' ;
3434import rustSVGstr from '../style/icon/language_icons/rust.svg' ;
35+ import sasSVGstr from '../style/icon/language_icons/sas.svg' ;
3536import sbtSVGstr from '../style/icon/language_icons/sbt.svg' ;
3637import scalaSVGstr from '../style/icon/language_icons/scala.svg' ;
3738import schemeSVGstr from '../style/icon/language_icons/scheme.svg' ;
@@ -95,6 +96,7 @@ export const SUPPORTED_LANGUAGES = [
9596 'Clojurescript' ,
9697 'sbt' ,
9798 'Guile' ,
99+ 'SAS' ,
98100 'Stata' ,
99101 'Racekt' ,
100102 'SQL' ,
@@ -266,6 +268,11 @@ export const nodejsIcon = new LabIcon({
266268 svgstr : nodejsSVGstr
267269} ) ;
268270
271+ export const sasIcon = new LabIcon ( {
272+ name : 'custom-ui-components:sas' ,
273+ svgstr : sasSVGstr
274+ } ) ;
275+
269276export const coconutIcon = new LabIcon ( {
270277 name : 'custom-ui-components:coconut' ,
271278 svgstr : coconutSVGstr
You can’t perform that action at this time.
0 commit comments