diff --git a/new-lamassu-admin/src/components/expandable-table/ExpTable.js b/new-lamassu-admin/src/components/expandable-table/ExpTable.js new file mode 100644 index 00000000..81987adb --- /dev/null +++ b/new-lamassu-admin/src/components/expandable-table/ExpTable.js @@ -0,0 +1,100 @@ +import React, { useState, useEffect } from 'react' +import { map, set } from 'lodash/fp' +import classnames from 'classnames' +import uuidv1 from 'uuid/v1' +import { makeStyles } from '@material-ui/core/styles' + +import { Table, THead, Tr, TBody, Td, Th } from '../fake-table/Table' +import { ReactComponent as ExpandClosedIcon } from '../../styling/icons/action/expand/closed.svg' +import { ReactComponent as ExpandOpenIcon } from '../../styling/icons/action/expand/open.svg' +import { mainWidth } from '../../styling/variables' + +const styles = { + hideDetailsRow: { + display: 'none' + }, + expandButton: { + border: 'none', + backgroundColor: 'transparent', + cursor: 'pointer', + padding: 4 + } +} + +const useStyles = makeStyles(styles) + +const ExpRow = ({ id, columns, details, sizes, expanded, className, expandRow, ...props }) => { + const classes = useStyles() + + const detailsRowClasses = { + [classes.detailsRow]: true, + [classes.hideDetailsRow]: expanded + } + + return ( + <> + + {columns.map((col, idx) => ( + {col.value} + ))} + + + + + + {details} + + + + ) +} + +/* headers = [{ value, className, textAlign }] + * rows = [{ columns = [{ value, className, textAlign }], details, className, error, errorMessage }] + */ +const ExpTable = ({ headers = [], rows = [], sizes = [], className, ...props }) => { + const [rowStates, setRowStates] = useState(null) + + useEffect(() => { + setRowStates(rows && rows.map((x) => { return { id: x.id, expanded: false } })) + }, [rows]) + + const expandRow = (id) => { + setRowStates(map(r => set('expanded', r.id === id ? !r.expanded : false, r))) + } + + return ( + + + {headers.map((header, idx) => ( + + ))} + + + {rowStates && rowStates.map((r, idx) => { + const row = rows[idx] + + return ( + + ) + })} + +
{header.value}
+ ) +} + +export default ExpTable diff --git a/new-lamassu-admin/src/components/fake-table/Table.js b/new-lamassu-admin/src/components/fake-table/Table.js index 5f46cef4..1b825d2f 100644 --- a/new-lamassu-admin/src/components/fake-table/Table.js +++ b/new-lamassu-admin/src/components/fake-table/Table.js @@ -106,6 +106,12 @@ const Td = ({ children, header, className, size = 100, textAlign }) => { ) } +const Th = ({ children, ...props }) => { + return ( + {children} + ) +} + const Tr = ({ error, errorMessage, children, className }) => { const classes = useStyles() const cardClasses = { root: classes.cardContentRoot } @@ -136,4 +142,4 @@ const EditCell = ({ save, cancel }) => ( ) -export { Table, THead, TBody, Tr, Td, EditCell } +export { Table, THead, TBody, Tr, Td, Th, EditCell } diff --git a/new-lamassu-admin/src/styling/icons/ID/card/comet.svg b/new-lamassu-admin/src/styling/icons/ID/card/comet.svg new file mode 100644 index 00000000..0e31a623 --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/ID/card/comet.svg @@ -0,0 +1,12 @@ + + + + icon/ID/card/comet + Created with Sketch. + + + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/ID/card/tomato.svg b/new-lamassu-admin/src/styling/icons/ID/card/tomato.svg new file mode 100644 index 00000000..bffe900a --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/ID/card/tomato.svg @@ -0,0 +1,12 @@ + + + + icon/ID/card/tomato + Created with Sketch. + + + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/ID/card/white.svg b/new-lamassu-admin/src/styling/icons/ID/card/white.svg new file mode 100644 index 00000000..c8688e28 --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/ID/card/white.svg @@ -0,0 +1,12 @@ + + + + icon/ID/card/white + Created with Sketch. + + + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/ID/card/zodiac.svg b/new-lamassu-admin/src/styling/icons/ID/card/zodiac.svg new file mode 100644 index 00000000..afd7c287 --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/ID/card/zodiac.svg @@ -0,0 +1,16 @@ + + + + icon/ID/card/zodiac + Created with Sketch. + + + + + + + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/ID/phone/comet.svg b/new-lamassu-admin/src/styling/icons/ID/phone/comet.svg new file mode 100644 index 00000000..06dd9df4 --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/ID/phone/comet.svg @@ -0,0 +1,9 @@ + + + + icon/ID/phone/comet + Created with Sketch. + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/ID/phone/tomato.svg b/new-lamassu-admin/src/styling/icons/ID/phone/tomato.svg new file mode 100644 index 00000000..f9f0163f --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/ID/phone/tomato.svg @@ -0,0 +1,9 @@ + + + + icon/ID/phone/tomato + Created with Sketch. + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/ID/phone/white.svg b/new-lamassu-admin/src/styling/icons/ID/phone/white.svg new file mode 100644 index 00000000..e5e76873 --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/ID/phone/white.svg @@ -0,0 +1,9 @@ + + + + icon/ID/phone/white + Created with Sketch. + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/ID/phone/zodiac.svg b/new-lamassu-admin/src/styling/icons/ID/phone/zodiac.svg new file mode 100644 index 00000000..b2da6741 --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/ID/phone/zodiac.svg @@ -0,0 +1,9 @@ + + + + icon/ID/phone/zodiac + Created with Sketch. + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/ID/photo/comet.svg b/new-lamassu-admin/src/styling/icons/ID/photo/comet.svg new file mode 100644 index 00000000..f4831f51 --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/ID/photo/comet.svg @@ -0,0 +1,9 @@ + + + + icon/ID/photo/comet + Created with Sketch. + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/ID/photo/tomato.svg b/new-lamassu-admin/src/styling/icons/ID/photo/tomato.svg new file mode 100644 index 00000000..6f878632 --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/ID/photo/tomato.svg @@ -0,0 +1,9 @@ + + + + icon/ID/photo/tomato + Created with Sketch. + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/ID/photo/white.svg b/new-lamassu-admin/src/styling/icons/ID/photo/white.svg new file mode 100644 index 00000000..8822a965 --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/ID/photo/white.svg @@ -0,0 +1,9 @@ + + + + icon/ID/photo/white + Created with Sketch. + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/ID/photo/zodiac.svg b/new-lamassu-admin/src/styling/icons/ID/photo/zodiac.svg new file mode 100644 index 00000000..4b3e29c7 --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/ID/photo/zodiac.svg @@ -0,0 +1,9 @@ + + + + icon/ID/photo/zodiac + Created with Sketch. + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/action/arrow/comet.svg b/new-lamassu-admin/src/styling/icons/action/arrow/comet.svg new file mode 100644 index 00000000..65d1011a --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/action/arrow/comet.svg @@ -0,0 +1,15 @@ + + + + icon/action/arrow/regular/comet + Created with Sketch. + + + + + + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/action/arrow/white.svg b/new-lamassu-admin/src/styling/icons/action/arrow/white.svg new file mode 100644 index 00000000..ccc498ae --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/action/arrow/white.svg @@ -0,0 +1,15 @@ + + + + icon/action/arrow/regular/white + Created with Sketch. + + + + + + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/action/arrow/zodiac.svg b/new-lamassu-admin/src/styling/icons/action/arrow/zodiac.svg new file mode 100644 index 00000000..02382c82 --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/action/arrow/zodiac.svg @@ -0,0 +1,15 @@ + + + + icon/action/arrow/regular/zodiac + Created with Sketch. + + + + + + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/action/close/comet.svg b/new-lamassu-admin/src/styling/icons/action/close/comet.svg new file mode 100644 index 00000000..a79ef492 --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/action/close/comet.svg @@ -0,0 +1,15 @@ + + + + icon/action/close/comet + Created with Sketch. + + + + + + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/action/close/white.svg b/new-lamassu-admin/src/styling/icons/action/close/white.svg new file mode 100644 index 00000000..498802a0 --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/action/close/white.svg @@ -0,0 +1,15 @@ + + + + icon/action/close/white + Created with Sketch. + + + + + + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/action/close/zodiac.svg b/new-lamassu-admin/src/styling/icons/action/close/zodiac.svg new file mode 100644 index 00000000..3763b842 --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/action/close/zodiac.svg @@ -0,0 +1,24 @@ + + + + icon/action/close/zodiac + Created with Sketch. + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/action/copy/comet.svg b/new-lamassu-admin/src/styling/icons/action/copy/comet.svg new file mode 100644 index 00000000..a7184e6e --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/action/copy/comet.svg @@ -0,0 +1,10 @@ + + + + icon/action/copy/comet + Created with Sketch. + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/action/copy/copy.svg b/new-lamassu-admin/src/styling/icons/action/copy/copy.svg new file mode 100644 index 00000000..de932215 --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/action/copy/copy.svg @@ -0,0 +1,14 @@ + + + + icon/action/copy + Created with Sketch. + + + + + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/action/copy/white.svg b/new-lamassu-admin/src/styling/icons/action/copy/white.svg new file mode 100644 index 00000000..c2f3d1c1 --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/action/copy/white.svg @@ -0,0 +1,10 @@ + + + + icon/action/copy/white + Created with Sketch. + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/action/copy/zodiac.svg b/new-lamassu-admin/src/styling/icons/action/copy/zodiac.svg new file mode 100644 index 00000000..ae968575 --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/action/copy/zodiac.svg @@ -0,0 +1,12 @@ + + + + icon/action/copy/zodiac + Created with Sketch. + + + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/action/delete/disabled.svg b/new-lamassu-admin/src/styling/icons/action/delete/disabled.svg new file mode 100644 index 00000000..662a5ac1 --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/action/delete/disabled.svg @@ -0,0 +1,24 @@ + + + + icon/action/delete/disabled + Created with Sketch. + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/action/delete/enabled.svg b/new-lamassu-admin/src/styling/icons/action/delete/enabled.svg new file mode 100644 index 00000000..ac296247 --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/action/delete/enabled.svg @@ -0,0 +1,13 @@ + + + + icon/action/delete/enabled + Created with Sketch. + + + + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/action/delete/white.svg b/new-lamassu-admin/src/styling/icons/action/delete/white.svg new file mode 100644 index 00000000..c5bd0b95 --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/action/delete/white.svg @@ -0,0 +1,24 @@ + + + + icon/action/delete/white + Created with Sketch. + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/action/edit/disabled.svg b/new-lamassu-admin/src/styling/icons/action/edit/disabled.svg new file mode 100644 index 00000000..6b10746a --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/action/edit/disabled.svg @@ -0,0 +1,17 @@ + + + + icon/action/edit/disabled + Created with Sketch. + + + + + + + + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/action/edit/enabled.svg b/new-lamassu-admin/src/styling/icons/action/edit/enabled.svg new file mode 100644 index 00000000..8accc240 --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/action/edit/enabled.svg @@ -0,0 +1,17 @@ + + + + icon/action/edit/enabled + Created with Sketch. + + + + + + + + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/action/edit/white.svg b/new-lamassu-admin/src/styling/icons/action/edit/white.svg new file mode 100644 index 00000000..bf023ef6 --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/action/edit/white.svg @@ -0,0 +1,17 @@ + + + + icon/action/edit/white + Created with Sketch. + + + + + + + + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/action/expand/closed.svg b/new-lamassu-admin/src/styling/icons/action/expand/closed.svg new file mode 100644 index 00000000..597cb878 --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/action/expand/closed.svg @@ -0,0 +1,13 @@ + + + + icon/actions/expand/closed + Created with Sketch. + + + + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/action/expand/open.svg b/new-lamassu-admin/src/styling/icons/action/expand/open.svg new file mode 100644 index 00000000..ae8601d5 --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/action/expand/open.svg @@ -0,0 +1,13 @@ + + + + icon/actions/expand/open + Created with Sketch. + + + + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/action/external link/white.svg b/new-lamassu-admin/src/styling/icons/action/external link/white.svg new file mode 100644 index 00000000..92998a62 --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/action/external link/white.svg @@ -0,0 +1,11 @@ + + + + icon/action/external link/white + Created with Sketch. + + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/action/external link/zodiac.svg b/new-lamassu-admin/src/styling/icons/action/external link/zodiac.svg new file mode 100644 index 00000000..7468e2fb --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/action/external link/zodiac.svg @@ -0,0 +1,13 @@ + + + + icon/action/external link/zodiac + Created with Sketch. + + + + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/action/help/white.svg b/new-lamassu-admin/src/styling/icons/action/help/white.svg new file mode 100644 index 00000000..00509560 --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/action/help/white.svg @@ -0,0 +1,11 @@ + + + + icon/action/help/white + Created with Sketch. + + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/action/help/zodiac.svg b/new-lamassu-admin/src/styling/icons/action/help/zodiac.svg new file mode 100644 index 00000000..ff1a8db5 --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/action/help/zodiac.svg @@ -0,0 +1,11 @@ + + + + icon/action/help/zodiac + Created with Sketch. + + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/button/add note/white.svg b/new-lamassu-admin/src/styling/icons/button/add note/white.svg new file mode 100644 index 00000000..fb96cd3a --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/button/add note/white.svg @@ -0,0 +1,19 @@ + + + + icon/button/add note/white + Created with Sketch. + + + + + + + + + + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/button/add note/zodiac.svg b/new-lamassu-admin/src/styling/icons/button/add note/zodiac.svg new file mode 100644 index 00000000..bf9bb4c7 --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/button/add note/zodiac.svg @@ -0,0 +1,21 @@ + + + + icon/button/add note + Created with Sketch. + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/button/add-note/white.svg b/new-lamassu-admin/src/styling/icons/button/add-note/white.svg new file mode 100644 index 00000000..42862d8d --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/button/add-note/white.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + diff --git a/new-lamassu-admin/src/styling/icons/button/add-note/zodiac.svg b/new-lamassu-admin/src/styling/icons/button/add-note/zodiac.svg new file mode 100644 index 00000000..a405c32f --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/button/add-note/zodiac.svg @@ -0,0 +1,23 @@ + + + + icon/button/add note + Created with Sketch. + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/button/add/white.svg b/new-lamassu-admin/src/styling/icons/button/add/white.svg new file mode 100644 index 00000000..3b3bc2c6 --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/button/add/white.svg @@ -0,0 +1,11 @@ + + + + icon/button/add/white + Created with Sketch. + + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/button/add/zodiac.svg b/new-lamassu-admin/src/styling/icons/button/add/zodiac.svg new file mode 100644 index 00000000..335bbcfa --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/button/add/zodiac.svg @@ -0,0 +1,11 @@ + + + + icon/button/add/zodiac + Created with Sketch. + + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/button/authorize/white.svg b/new-lamassu-admin/src/styling/icons/button/authorize/white.svg new file mode 100644 index 00000000..2ec79f66 --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/button/authorize/white.svg @@ -0,0 +1,10 @@ + + + + icon/button/authorize/white + Created with Sketch. + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/button/authorize/zodiac.svg b/new-lamassu-admin/src/styling/icons/button/authorize/zodiac.svg new file mode 100644 index 00000000..3086f7c0 --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/button/authorize/zodiac.svg @@ -0,0 +1,12 @@ + + + + icon/button/authorize/zodiac + Created with Sketch. + + + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/button/blacklist/white.svg b/new-lamassu-admin/src/styling/icons/button/blacklist/white.svg new file mode 100644 index 00000000..93ccbeb3 --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/button/blacklist/white.svg @@ -0,0 +1,19 @@ + + + + icon/button/blacklist/white + Created with Sketch. + + + + + + + + + + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/button/blacklist/zodiac.svg b/new-lamassu-admin/src/styling/icons/button/blacklist/zodiac.svg new file mode 100644 index 00000000..db15bd3d --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/button/blacklist/zodiac.svg @@ -0,0 +1,21 @@ + + + + icon/button/blacklist/zodiac + Created with Sketch. + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/button/block/white.svg b/new-lamassu-admin/src/styling/icons/button/block/white.svg new file mode 100644 index 00000000..1bf3e75c --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/button/block/white.svg @@ -0,0 +1,12 @@ + + + + icon/button/block/white + Created with Sketch. + + + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/button/block/zodiac.svg b/new-lamassu-admin/src/styling/icons/button/block/zodiac.svg new file mode 100644 index 00000000..f7b498f7 --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/button/block/zodiac.svg @@ -0,0 +1,12 @@ + + + + icon/button/block/zodiac + Created with Sketch. + + + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/button/cancel/white.svg b/new-lamassu-admin/src/styling/icons/button/cancel/white.svg new file mode 100644 index 00000000..5b7df3ed --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/button/cancel/white.svg @@ -0,0 +1,12 @@ + + + + icon/button/cancel/white + Created with Sketch. + + + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/button/cancel/zodiac.svg b/new-lamassu-admin/src/styling/icons/button/cancel/zodiac.svg new file mode 100644 index 00000000..628e16ff --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/button/cancel/zodiac.svg @@ -0,0 +1,12 @@ + + + + icon/button/cancel/zodiac + Created with Sketch. + + + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/button/configure/white.svg b/new-lamassu-admin/src/styling/icons/button/configure/white.svg new file mode 100644 index 00000000..7cc209ff --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/button/configure/white.svg @@ -0,0 +1,10 @@ + + + + icon/button/configure/white + Created with Sketch. + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/button/configure/zodiac.svg b/new-lamassu-admin/src/styling/icons/button/configure/zodiac.svg new file mode 100644 index 00000000..fcc6b29f --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/button/configure/zodiac.svg @@ -0,0 +1,10 @@ + + + + icon/button/configure/zodiac + Created with Sketch. + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/button/download/white.svg b/new-lamassu-admin/src/styling/icons/button/download/white.svg index 50c78ad1..42170faf 100644 --- a/new-lamassu-admin/src/styling/icons/button/download/white.svg +++ b/new-lamassu-admin/src/styling/icons/button/download/white.svg @@ -1,15 +1,13 @@ - - + + icon/button/download/white Created with Sketch. - - - - - - - + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/button/download/zodiac.svg b/new-lamassu-admin/src/styling/icons/button/download/zodiac.svg index b9e0f7fa..e3829971 100644 --- a/new-lamassu-admin/src/styling/icons/button/download/zodiac.svg +++ b/new-lamassu-admin/src/styling/icons/button/download/zodiac.svg @@ -1,15 +1,13 @@ - - + + icon/button/download/zodiac Created with Sketch. - - - - - - - + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/button/edit/white.svg b/new-lamassu-admin/src/styling/icons/button/edit/white.svg new file mode 100644 index 00000000..d05365ad --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/button/edit/white.svg @@ -0,0 +1,10 @@ + + + + icon/button/edit/white + Created with Sketch. + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/button/edit/zodiac.svg b/new-lamassu-admin/src/styling/icons/button/edit/zodiac.svg new file mode 100644 index 00000000..28e2f135 --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/button/edit/zodiac.svg @@ -0,0 +1,10 @@ + + + + icon/button/edit/zodiac + Created with Sketch. + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/button/export to PDF/white.svg b/new-lamassu-admin/src/styling/icons/button/export to PDF/white.svg new file mode 100644 index 00000000..12a5d65f --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/button/export to PDF/white.svg @@ -0,0 +1,20 @@ + + + + icon/button/export to PDF/white + Created with Sketch. + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/button/export to PDF/zodiac.svg b/new-lamassu-admin/src/styling/icons/button/export to PDF/zodiac.svg new file mode 100644 index 00000000..6b7c3507 --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/button/export to PDF/zodiac.svg @@ -0,0 +1,20 @@ + + + + icon/button/export to PDF/zodiac + Created with Sketch. + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/button/export-pdf/white.svg b/new-lamassu-admin/src/styling/icons/button/export-pdf/white.svg new file mode 100644 index 00000000..90fa4f2e --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/button/export-pdf/white.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/new-lamassu-admin/src/styling/icons/button/ignore/white.svg b/new-lamassu-admin/src/styling/icons/button/ignore/white.svg new file mode 100644 index 00000000..8606a343 --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/button/ignore/white.svg @@ -0,0 +1,11 @@ + + + + icon/button/ignore/white + Created with Sketch. + + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/button/ignore/zodiac.svg b/new-lamassu-admin/src/styling/icons/button/ignore/zodiac.svg new file mode 100644 index 00000000..bb3bbcc1 --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/button/ignore/zodiac.svg @@ -0,0 +1,11 @@ + + + + icon/button/ignore/zodiac + Created with Sketch. + + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/button/link/export.svg b/new-lamassu-admin/src/styling/icons/button/link/export.svg new file mode 100644 index 00000000..32f2d696 --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/button/link/export.svg @@ -0,0 +1,20 @@ + + + + icon/button/link/export + Created with Sketch. + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/button/link/white.svg b/new-lamassu-admin/src/styling/icons/button/link/white.svg new file mode 100644 index 00000000..cc6d389d --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/button/link/white.svg @@ -0,0 +1,13 @@ + + + + icon/button/link/white + Created with Sketch. + + + + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/button/link/zodiac.svg b/new-lamassu-admin/src/styling/icons/button/link/zodiac.svg new file mode 100644 index 00000000..4fdbceba --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/button/link/zodiac.svg @@ -0,0 +1,13 @@ + + + + icon/button/link/zodiac + Created with Sketch. + + + + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/button/reboot/white.svg b/new-lamassu-admin/src/styling/icons/button/reboot/white.svg new file mode 100644 index 00000000..fc3cee8e --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/button/reboot/white.svg @@ -0,0 +1,19 @@ + + + + icon/button/reboot/white + Created with Sketch. + + + + + + + + + + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/button/reboot/zodiac.svg b/new-lamassu-admin/src/styling/icons/button/reboot/zodiac.svg new file mode 100644 index 00000000..c97c9e53 --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/button/reboot/zodiac.svg @@ -0,0 +1,19 @@ + + + + icon/button/reboot/zodiac + Created with Sketch. + + + + + + + + + + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/button/retry/white.svg b/new-lamassu-admin/src/styling/icons/button/retry/white.svg new file mode 100644 index 00000000..d247726d --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/button/retry/white.svg @@ -0,0 +1,12 @@ + + + + icon/button/retry/white + Created with Sketch. + + + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/button/retry/zodiac.svg b/new-lamassu-admin/src/styling/icons/button/retry/zodiac.svg new file mode 100644 index 00000000..b843afbc --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/button/retry/zodiac.svg @@ -0,0 +1,12 @@ + + + + icon/button/retry/zodiac + Created with Sketch. + + + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/button/schedule/white.svg b/new-lamassu-admin/src/styling/icons/button/schedule/white.svg new file mode 100644 index 00000000..ec6ea121 --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/button/schedule/white.svg @@ -0,0 +1,10 @@ + + + + icon/button/schedule/white + Created with Sketch. + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/button/schedule/zodiac.svg b/new-lamassu-admin/src/styling/icons/button/schedule/zodiac.svg new file mode 100644 index 00000000..0c0cb74a --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/button/schedule/zodiac.svg @@ -0,0 +1,10 @@ + + + + icon/button/shedule/zodiac + Created with Sketch. + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/button/shut down/white.svg b/new-lamassu-admin/src/styling/icons/button/shut down/white.svg new file mode 100644 index 00000000..f6e9fd27 --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/button/shut down/white.svg @@ -0,0 +1,12 @@ + + + + icon/button/shut down/white + Created with Sketch. + + + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/button/shut down/zodiac.svg b/new-lamassu-admin/src/styling/icons/button/shut down/zodiac.svg new file mode 100644 index 00000000..971e21ba --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/button/shut down/zodiac.svg @@ -0,0 +1,12 @@ + + + + icon/button/shut down/zodiac + Created with Sketch. + + + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/button/stop-ignoring/white.svg b/new-lamassu-admin/src/styling/icons/button/stop-ignoring/white.svg new file mode 100644 index 00000000..e7562c03 --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/button/stop-ignoring/white.svg @@ -0,0 +1,9 @@ + + + + icon/button/stop-ignoring/white + Created with Sketch. + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/button/stop-ignoring/zodiac.svg b/new-lamassu-admin/src/styling/icons/button/stop-ignoring/zodiac.svg new file mode 100644 index 00000000..f96f57a5 --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/button/stop-ignoring/zodiac.svg @@ -0,0 +1,9 @@ + + + + icon/button/stop-ignoring/zodiac + Created with Sketch. + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/button/unpair/white.svg b/new-lamassu-admin/src/styling/icons/button/unpair/white.svg new file mode 100644 index 00000000..ff5df82e --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/button/unpair/white.svg @@ -0,0 +1,20 @@ + + + + icon/button/unpair/white + Created with Sketch. + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/button/unpair/zodiac.svg b/new-lamassu-admin/src/styling/icons/button/unpair/zodiac.svg new file mode 100644 index 00000000..6c2aa37b --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/button/unpair/zodiac.svg @@ -0,0 +1,20 @@ + + + + icon/button/unpair/zodiac + Created with Sketch. + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/button/upload/white.svg b/new-lamassu-admin/src/styling/icons/button/upload/white.svg new file mode 100644 index 00000000..dee86625 --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/button/upload/white.svg @@ -0,0 +1,15 @@ + + + + icon/button/upload/white + Created with Sketch. + + + + + + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/button/upload/zodiac.svg b/new-lamassu-admin/src/styling/icons/button/upload/zodiac.svg new file mode 100644 index 00000000..d2d00699 --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/button/upload/zodiac.svg @@ -0,0 +1,15 @@ + + + + icon/button/upload/zodiac + Created with Sketch. + + + + + + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/button/whitelist/white.svg b/new-lamassu-admin/src/styling/icons/button/whitelist/white.svg new file mode 100644 index 00000000..659e77b6 --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/button/whitelist/white.svg @@ -0,0 +1,19 @@ + + + + icon/button/whitelist/white + Created with Sketch. + + + + + + + + + + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/button/whitelist/zodiac.svg b/new-lamassu-admin/src/styling/icons/button/whitelist/zodiac.svg new file mode 100644 index 00000000..f8fa833a --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/button/whitelist/zodiac.svg @@ -0,0 +1,19 @@ + + + + icon/button/whitelist/zodiac + Created with Sketch. + + + + + + + + + + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/circle buttons/exception-view/white.svg b/new-lamassu-admin/src/styling/icons/circle buttons/exception-view/white.svg new file mode 100644 index 00000000..a3c2c805 --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/circle buttons/exception-view/white.svg @@ -0,0 +1,11 @@ + + + + icon/sf-small/exception/white + Created with Sketch. + + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/circle buttons/exception-view/zodiac.svg b/new-lamassu-admin/src/styling/icons/circle buttons/exception-view/zodiac.svg new file mode 100644 index 00000000..3190444a --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/circle buttons/exception-view/zodiac.svg @@ -0,0 +1,11 @@ + + + + icon/sf-small/exception/zodiac + Created with Sketch. + + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/circle buttons/filter/white.svg b/new-lamassu-admin/src/styling/icons/circle buttons/filter/white.svg new file mode 100644 index 00000000..6507d224 --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/circle buttons/filter/white.svg @@ -0,0 +1,14 @@ + + + + icon/sf-small/filter/white + Created with Sketch. + + + + + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/circle buttons/filter/zodiac.svg b/new-lamassu-admin/src/styling/icons/circle buttons/filter/zodiac.svg new file mode 100644 index 00000000..4d92a3fb --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/circle buttons/filter/zodiac.svg @@ -0,0 +1,14 @@ + + + + icon/sf-small/filter/zodiac + Created with Sketch. + + + + + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/circle buttons/history/white.svg b/new-lamassu-admin/src/styling/icons/circle buttons/history/white.svg new file mode 100644 index 00000000..0a284e29 --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/circle buttons/history/white.svg @@ -0,0 +1,13 @@ + + + + icon/sf-small/clock/white + Created with Sketch. + + + + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/circle buttons/history/zodiac.svg b/new-lamassu-admin/src/styling/icons/circle buttons/history/zodiac.svg new file mode 100644 index 00000000..fdcfd738 --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/circle buttons/history/zodiac.svg @@ -0,0 +1,13 @@ + + + + icon/sf-small/clock/zodiac + Created with Sketch. + + + + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/circle buttons/listing-view/white.svg b/new-lamassu-admin/src/styling/icons/circle buttons/listing-view/white.svg new file mode 100644 index 00000000..d7b8f867 --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/circle buttons/listing-view/white.svg @@ -0,0 +1,12 @@ + + + + icon/sf-small/listing/white + Created with Sketch. + + + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/circle buttons/listing-view/zodiac.svg b/new-lamassu-admin/src/styling/icons/circle buttons/listing-view/zodiac.svg new file mode 100644 index 00000000..96a713ee --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/circle buttons/listing-view/zodiac.svg @@ -0,0 +1,12 @@ + + + + icon/sf-small/listing/zodiac + Created with Sketch. + + + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/circle buttons/save/white.svg b/new-lamassu-admin/src/styling/icons/circle buttons/save/white.svg new file mode 100644 index 00000000..91172473 --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/circle buttons/save/white.svg @@ -0,0 +1,20 @@ + + + + icon/sf-small/save/white + Created with Sketch. + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/circle buttons/save/zodiac.svg b/new-lamassu-admin/src/styling/icons/circle buttons/save/zodiac.svg new file mode 100644 index 00000000..fa05c912 --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/circle buttons/save/zodiac.svg @@ -0,0 +1,24 @@ + + + + icon/sf-small/save/zodiac + Created with Sketch. + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/circle buttons/search/white.svg b/new-lamassu-admin/src/styling/icons/circle buttons/search/white.svg new file mode 100644 index 00000000..cd65886f --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/circle buttons/search/white.svg @@ -0,0 +1,10 @@ + + + + icon/sf-small/search/white + Created with Sketch. + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/circle buttons/search/zodiac.svg b/new-lamassu-admin/src/styling/icons/circle buttons/search/zodiac.svg new file mode 100644 index 00000000..130fd929 --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/circle buttons/search/zodiac.svg @@ -0,0 +1,10 @@ + + + + icon/sf-small/search/zodiac + Created with Sketch. + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/circle buttons/settings/white.svg b/new-lamassu-admin/src/styling/icons/circle buttons/settings/white.svg new file mode 100644 index 00000000..4f3b47f4 --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/circle buttons/settings/white.svg @@ -0,0 +1,9 @@ + + + + icon/sf-small/settings/white + Created with Sketch. + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/circle buttons/settings/zodiac.svg b/new-lamassu-admin/src/styling/icons/circle buttons/settings/zodiac.svg new file mode 100644 index 00000000..3327e8a3 --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/circle buttons/settings/zodiac.svg @@ -0,0 +1,9 @@ + + + + icon/sf-small/settings/zodiac + Created with Sketch. + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/circle buttons/share/zodiac.svg b/new-lamassu-admin/src/styling/icons/circle buttons/share/zodiac.svg new file mode 100644 index 00000000..e1fff2bf --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/circle buttons/share/zodiac.svg @@ -0,0 +1,12 @@ + + + + icon/sf-small/share/zodiac + Created with Sketch. + + + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/circle buttons/upload/white.svg b/new-lamassu-admin/src/styling/icons/circle buttons/upload/white.svg new file mode 100644 index 00000000..e25618c1 --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/circle buttons/upload/white.svg @@ -0,0 +1,13 @@ + + + + icon/sf-small/upload/white + Created with Sketch. + + + + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/circle buttons/upload/zodiac.svg b/new-lamassu-admin/src/styling/icons/circle buttons/upload/zodiac.svg new file mode 100644 index 00000000..8c9e460c --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/circle buttons/upload/zodiac.svg @@ -0,0 +1,13 @@ + + + + icon/sf-small/upload/zodiac + Created with Sketch. + + + + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/circle buttons/wizard/white.svg b/new-lamassu-admin/src/styling/icons/circle buttons/wizard/white.svg new file mode 100644 index 00000000..c8d695bf --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/circle buttons/wizard/white.svg @@ -0,0 +1,10 @@ + + + + icon/sf-small/wizard/white + Created with Sketch. + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/circle buttons/wizard/zodiac.svg b/new-lamassu-admin/src/styling/icons/circle buttons/wizard/zodiac.svg new file mode 100644 index 00000000..d7d309fe --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/circle buttons/wizard/zodiac.svg @@ -0,0 +1,10 @@ + + + + icon/sf-small/wizard/zodiac + Created with Sketch. + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/direction/cash-in.png b/new-lamassu-admin/src/styling/icons/direction/cash-in.png new file mode 100644 index 00000000..8c015e2e Binary files /dev/null and b/new-lamassu-admin/src/styling/icons/direction/cash-in.png differ diff --git a/new-lamassu-admin/src/styling/icons/direction/cash-in.svg b/new-lamassu-admin/src/styling/icons/direction/cash-in.svg new file mode 100644 index 00000000..bb17ccf1 --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/direction/cash-in.svg @@ -0,0 +1,11 @@ + + + + icon/direction/cash-in + Created with Sketch. + + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/direction/cash-out.png b/new-lamassu-admin/src/styling/icons/direction/cash-out.png new file mode 100644 index 00000000..bd5fcda9 Binary files /dev/null and b/new-lamassu-admin/src/styling/icons/direction/cash-out.png differ diff --git a/new-lamassu-admin/src/styling/icons/direction/cash-out.svg b/new-lamassu-admin/src/styling/icons/direction/cash-out.svg new file mode 100644 index 00000000..13da9750 --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/direction/cash-out.svg @@ -0,0 +1,11 @@ + + + + icon/direction/cash-out + Created with Sketch. + + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/menu/logo.svg b/new-lamassu-admin/src/styling/icons/menu/logo.svg new file mode 100644 index 00000000..87f946d5 --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/menu/logo.svg @@ -0,0 +1,21 @@ + + + + icon/menu/logo + Created with Sketch. + + + + + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/menu/notification.svg b/new-lamassu-admin/src/styling/icons/menu/notification.svg new file mode 100644 index 00000000..0cd4d77e --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/menu/notification.svg @@ -0,0 +1,14 @@ + + + + icon/menu/notification + Created with Sketch. + + + + + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/menu/search.svg b/new-lamassu-admin/src/styling/icons/menu/search.svg new file mode 100644 index 00000000..4d1e9b40 --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/menu/search.svg @@ -0,0 +1,14 @@ + + + + icon/menu/search + Created with Sketch. + + + + + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/stage/spring/complete.svg b/new-lamassu-admin/src/styling/icons/stage/spring/complete.svg new file mode 100644 index 00000000..0ed20799 --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/stage/spring/complete.svg @@ -0,0 +1,10 @@ + + + + icon/stage/spring/complete + Created with Sketch. + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/stage/spring/current.svg b/new-lamassu-admin/src/styling/icons/stage/spring/current.svg new file mode 100644 index 00000000..a9084457 --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/stage/spring/current.svg @@ -0,0 +1,10 @@ + + + + icon/stage/spring/current + Created with Sketch. + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/stage/spring/empty.svg b/new-lamassu-admin/src/styling/icons/stage/spring/empty.svg new file mode 100644 index 00000000..b1a0cdf1 --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/stage/spring/empty.svg @@ -0,0 +1,9 @@ + + + + icon/stage/spring/empty + Created with Sketch. + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/stage/zodiac/complete.svg b/new-lamassu-admin/src/styling/icons/stage/zodiac/complete.svg new file mode 100644 index 00000000..5903dff7 --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/stage/zodiac/complete.svg @@ -0,0 +1,10 @@ + + + + icon/stage/zodiac/complete + Created with Sketch. + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/stage/zodiac/current.svg b/new-lamassu-admin/src/styling/icons/stage/zodiac/current.svg new file mode 100644 index 00000000..5b030128 --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/stage/zodiac/current.svg @@ -0,0 +1,10 @@ + + + + icon/stage/zodiac/current + Created with Sketch. + + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/stage/zodiac/empty.svg b/new-lamassu-admin/src/styling/icons/stage/zodiac/empty.svg new file mode 100644 index 00000000..5b8f504b --- /dev/null +++ b/new-lamassu-admin/src/styling/icons/stage/zodiac/empty.svg @@ -0,0 +1,9 @@ + + + + icon/stage/zodiac/empty + Created with Sketch. + + + + \ No newline at end of file diff --git a/new-lamassu-admin/src/styling/icons/widgets/delete.png b/new-lamassu-admin/src/styling/icons/widgets/delete.png new file mode 100644 index 00000000..f1ef668a Binary files /dev/null and b/new-lamassu-admin/src/styling/icons/widgets/delete.png differ diff --git a/new-lamassu-admin/src/styling/icons/widgets/drag.png b/new-lamassu-admin/src/styling/icons/widgets/drag.png new file mode 100644 index 00000000..12266983 Binary files /dev/null and b/new-lamassu-admin/src/styling/icons/widgets/drag.png differ diff --git a/new-lamassu-admin/src/styling/icons/widgets/expand.png b/new-lamassu-admin/src/styling/icons/widgets/expand.png new file mode 100644 index 00000000..06a5072e Binary files /dev/null and b/new-lamassu-admin/src/styling/icons/widgets/expand.png differ diff --git a/new-lamassu-admin/src/styling/icons/widgets/full screen.png b/new-lamassu-admin/src/styling/icons/widgets/full screen.png new file mode 100644 index 00000000..707eead4 Binary files /dev/null and b/new-lamassu-admin/src/styling/icons/widgets/full screen.png differ