diff --git a/modules/dataquery/jsx/ReplayIcon.tsx b/modules/dataquery/jsx/ReplayIcon.tsx new file mode 100644 index 00000000000..36b9eb5f317 --- /dev/null +++ b/modules/dataquery/jsx/ReplayIcon.tsx @@ -0,0 +1,15 @@ +/* eslint-disable max-len */ +/** + * Replay icon + * + */ +const ReplayIcon = () => ( + + + + + + +); + +export default ReplayIcon; diff --git a/modules/dataquery/jsx/ShareIconA.tsx b/modules/dataquery/jsx/ShareIconA.tsx new file mode 100644 index 00000000000..b3d48ad557d --- /dev/null +++ b/modules/dataquery/jsx/ShareIconA.tsx @@ -0,0 +1,15 @@ +/* eslint-disable max-len */ +/** + * Share IconA + */ +const ShareIconA = () => ( + + + + + + + +); + +export default ShareIconA; diff --git a/modules/dataquery/jsx/welcome.tsx b/modules/dataquery/jsx/welcome.tsx index 86103fcee4c..4931a9c8a6a 100644 --- a/modules/dataquery/jsx/welcome.tsx +++ b/modules/dataquery/jsx/welcome.tsx @@ -12,6 +12,8 @@ import {ButtonElement, CheckboxElement, TextboxElement} from 'jsx/Form'; import {APIQueryField} from './types'; import {FullDictionary} from './types'; import {FlattenedField, FlattenedQuery, VisitOption} from './types'; +import ReplayIcon from './ReplayIcon'; +import ShareIconA from './ShareIconA'; /** * Return the welcome tab for the DQT * @@ -842,7 +844,7 @@ function SingleQueryDisplay(props: { props.setNameModalID(query.QueryID); }} />; msg =
{desc} -  {starredIcon}{sharedIcon}{loadIcon}{nameIcon}{pinIcon} +  {loadIcon}{nameIcon}{starredIcon}{pinIcon}{sharedIcon}
; } else if (query.SharedBy) { const desc = query.Name @@ -1007,9 +1009,15 @@ function LoadIcon(props: { }) { return - + ; } @@ -1028,11 +1036,16 @@ function ShareIcon(props: { isShared?: boolean, }) { return - + ; }