feat: add expandable table, new icons
100
new-lamassu-admin/src/components/expandable-table/ExpTable.js
Normal file
|
|
@ -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 (
|
||||
<>
|
||||
<Tr className={classnames(className)} {...props}>
|
||||
{columns.map((col, idx) => (
|
||||
<Td key={uuidv1()} size={sizes[idx]} className={col.className} textAlign={col.textAlign}>{col.value}</Td>
|
||||
))}
|
||||
<Td size={sizes[sizes.length - 1]}>
|
||||
<button onClick={() => expandRow(id)} className={classes.expandButton}>
|
||||
{expanded && <ExpandOpenIcon />}
|
||||
{!expanded && <ExpandClosedIcon />}
|
||||
</button></Td>
|
||||
</Tr>
|
||||
<Tr className={classnames(detailsRowClasses)}>
|
||||
<Td size={mainWidth}>
|
||||
{details}
|
||||
</Td>
|
||||
</Tr>
|
||||
</>
|
||||
)
|
||||
}
|
||||
|
||||
/* 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 (
|
||||
<Table className={classnames(className)}>
|
||||
<THead>
|
||||
{headers.map((header, idx) => (
|
||||
<Th key={uuidv1()} size={sizes[idx]} className={header.className} textAlign={header.textAlign}>{header.value}</Th>
|
||||
))}
|
||||
</THead>
|
||||
<TBody>
|
||||
{rowStates && rowStates.map((r, idx) => {
|
||||
const row = rows[idx]
|
||||
|
||||
return (
|
||||
<ExpRow
|
||||
key={uuidv1()}
|
||||
id={r.id}
|
||||
columns={row.columns}
|
||||
details={row.details}
|
||||
sizes={sizes}
|
||||
expanded={r.expanded}
|
||||
className={row.className}
|
||||
expandRow={expandRow}
|
||||
error={row.error}
|
||||
errorMessage={row.errorMessage}
|
||||
/>
|
||||
)
|
||||
})}
|
||||
</TBody>
|
||||
</Table>
|
||||
)
|
||||
}
|
||||
|
||||
export default ExpTable
|
||||
|
|
@ -106,6 +106,12 @@ const Td = ({ children, header, className, size = 100, textAlign }) => {
|
|||
)
|
||||
}
|
||||
|
||||
const Th = ({ children, ...props }) => {
|
||||
return (
|
||||
<Td header {...props}>{children}</Td>
|
||||
)
|
||||
}
|
||||
|
||||
const Tr = ({ error, errorMessage, children, className }) => {
|
||||
const classes = useStyles()
|
||||
const cardClasses = { root: classes.cardContentRoot }
|
||||
|
|
@ -136,4 +142,4 @@ const EditCell = ({ save, cancel }) => (
|
|||
</Td>
|
||||
)
|
||||
|
||||
export { Table, THead, TBody, Tr, Td, EditCell }
|
||||
export { Table, THead, TBody, Tr, Td, Th, EditCell }
|
||||
|
|
|
|||
12
new-lamassu-admin/src/styling/icons/ID/card/comet.svg
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="22px" height="16px" viewBox="0 0 22 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/ID/card/comet</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="icon/ID/card/comet" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
|
||||
<polygon id="Stroke-1" stroke="#5F668A" stroke-width="1.6" points="0 16 22 16 22 0 0 0"></polygon>
|
||||
<line x1="11.7857143" y1="4" x2="18.8571429" y2="4" id="Stroke-3" stroke="#5F668A" stroke-width="1.6"></line>
|
||||
<line x1="11.7857143" y1="7.2" x2="18.8571429" y2="7.2" id="Stroke-4" stroke="#5F668A" stroke-width="1.6"></line>
|
||||
<polygon id="Stroke-5" stroke="#5F668A" stroke-width="1.6" points="3.14285714 11.2 8.64285714 11.2 8.64285714 4 3.14285714 4"></polygon>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 974 B |
12
new-lamassu-admin/src/styling/icons/ID/card/tomato.svg
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="22px" height="16px" viewBox="0 0 22 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/ID/card/tomato</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="icon/ID/card/tomato" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
|
||||
<polygon id="Stroke-1" stroke="#FF584A" stroke-width="1.6" points="0 16 22 16 22 0 0 0"></polygon>
|
||||
<line x1="11.7857143" y1="4" x2="18.8571429" y2="4" id="Stroke-3" stroke="#FF584A" stroke-width="1.6"></line>
|
||||
<line x1="11.7857143" y1="7.2" x2="18.8571429" y2="7.2" id="Stroke-4" stroke="#FF584A" stroke-width="1.6"></line>
|
||||
<polygon id="Stroke-5" stroke="#FF584A" stroke-width="1.6" points="3.14285714 11.2 8.64285714 11.2 8.64285714 4 3.14285714 4"></polygon>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 976 B |
12
new-lamassu-admin/src/styling/icons/ID/card/white.svg
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="22px" height="16px" viewBox="0 0 22 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/ID/card/white</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="icon/ID/card/white" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
|
||||
<polygon id="Stroke-1" stroke="#FFFFFF" stroke-width="1.6" points="0 16 22 16 22 0 0 0"></polygon>
|
||||
<line x1="11.7857143" y1="4" x2="18.8571429" y2="4" id="Stroke-3" stroke="#FFFFFF" stroke-width="1.6"></line>
|
||||
<line x1="11.7857143" y1="7.2" x2="18.8571429" y2="7.2" id="Stroke-4" stroke="#FFFFFF" stroke-width="1.6"></line>
|
||||
<polygon id="Stroke-5" stroke="#FFFFFF" stroke-width="1.6" points="3.14285714 11.2 8.64285714 11.2 8.64285714 4 3.14285714 4"></polygon>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 974 B |
16
new-lamassu-admin/src/styling/icons/ID/card/zodiac.svg
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="22px" height="16px" viewBox="0 0 22 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/ID/card/zodiac</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="icon/ID/card/zodiac" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
|
||||
<g id="Group-2" stroke="#1B2559" stroke-width="1.6">
|
||||
<g id="id-copy">
|
||||
<polygon id="Stroke-1" points="0 16 22 16 22 0 0 0"></polygon>
|
||||
<line x1="11.7857143" y1="4" x2="18.8571429" y2="4" id="Stroke-3"></line>
|
||||
<line x1="11.7857143" y1="7.2" x2="18.8571429" y2="7.2" id="Stroke-4"></line>
|
||||
<polygon id="Stroke-5" points="3.14285714 11.2 8.64285714 11.2 8.64285714 4 3.14285714 4"></polygon>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 984 B |
9
new-lamassu-admin/src/styling/icons/ID/phone/comet.svg
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="22px" height="16px" viewBox="0 0 22 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/ID/phone/comet</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="icon/ID/phone/comet" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
|
||||
<path d="M6.47150618,12.52898 C9.939556,15.9970298 13.7804112,16.1146315 15.4756355,15.9586292 C16.0220434,15.9090285 16.5308507,15.6578249 16.9188563,15.2698193 L19.0004862,13.1881894 L17.0220577,11.210561 L15.0436293,10.5505516 L13.7244104,11.8697705 C13.7244104,11.8697705 12.4059914,13.1881894 9.10914407,9.89054208 C5.81229671,6.59449473 7.13071565,5.27527578 7.13071565,5.27527578 L8.4499346,3.95605683 L7.78992512,1.97842842 L5.81229671,0 L3.73066681,2.0816299 C3.34186123,2.46963548 3.09145763,2.97844279 3.04105691,3.52485063 C2.88585468,5.22007499 3.00345637,9.06013015 6.47150618,12.52898 Z" id="Stroke-1-Copy" stroke="#5F668A" stroke-width="1.6"></path>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.1 KiB |
9
new-lamassu-admin/src/styling/icons/ID/phone/tomato.svg
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="22px" height="16px" viewBox="0 0 22 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/ID/phone/tomato</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="icon/ID/phone/tomato" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
|
||||
<path d="M6.47150618,12.52898 C9.939556,15.9970298 13.7804112,16.1146315 15.4756355,15.9586292 C16.0220434,15.9090285 16.5308507,15.6578249 16.9188563,15.2698193 L19.0004862,13.1881894 L17.0220577,11.210561 L15.0436293,10.5505516 L13.7244104,11.8697705 C13.7244104,11.8697705 12.4059914,13.1881894 9.10914407,9.89054208 C5.81229671,6.59449473 7.13071565,5.27527578 7.13071565,5.27527578 L8.4499346,3.95605683 L7.78992512,1.97842842 L5.81229671,0 L3.73066681,2.0816299 C3.34186123,2.46963548 3.09145763,2.97844279 3.04105691,3.52485063 C2.88585468,5.22007499 3.00345637,9.06013015 6.47150618,12.52898 Z" id="Stroke-1-Copy" stroke="#FF584A" stroke-width="1.6"></path>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.1 KiB |
9
new-lamassu-admin/src/styling/icons/ID/phone/white.svg
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="22px" height="16px" viewBox="0 0 22 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/ID/phone/white</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="icon/ID/phone/white" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
|
||||
<path d="M6.47150618,12.52898 C9.939556,15.9970298 13.7804112,16.1146315 15.4756355,15.9586292 C16.0220434,15.9090285 16.5308507,15.6578249 16.9188563,15.2698193 L19.0004862,13.1881894 L17.0220577,11.210561 L15.0436293,10.5505516 L13.7244104,11.8697705 C13.7244104,11.8697705 12.4059914,13.1881894 9.10914407,9.89054208 C5.81229671,6.59449473 7.13071565,5.27527578 7.13071565,5.27527578 L8.4499346,3.95605683 L7.78992512,1.97842842 L5.81229671,0 L3.73066681,2.0816299 C3.34186123,2.46963548 3.09145763,2.97844279 3.04105691,3.52485063 C2.88585468,5.22007499 3.00345637,9.06013015 6.47150618,12.52898 Z" id="Stroke-1-Copy" stroke="#FFFFFF" stroke-width="1.6"></path>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.1 KiB |
9
new-lamassu-admin/src/styling/icons/ID/phone/zodiac.svg
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="22px" height="16px" viewBox="0 0 22 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/ID/phone/zodiac</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="icon/ID/phone/zodiac" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
|
||||
<path d="M6.47150618,12.52898 C9.939556,15.9970298 13.7804112,16.1146315 15.4756355,15.9586292 C16.0220434,15.9090285 16.5308507,15.6578249 16.9188563,15.2698193 L19.0004862,13.1881894 L17.0220577,11.210561 L15.0436293,10.5505516 L13.7244104,11.8697705 C13.7244104,11.8697705 12.4059914,13.1881894 9.10914407,9.89054208 C5.81229671,6.59449473 7.13071565,5.27527578 7.13071565,5.27527578 L8.4499346,3.95605683 L7.78992512,1.97842842 L5.81229671,0 L3.73066681,2.0816299 C3.34186123,2.46963548 3.09145763,2.97844279 3.04105691,3.52485063 C2.88585468,5.22007499 3.00345637,9.06013015 6.47150618,12.52898 Z" id="Stroke-1-Copy" stroke="#1B2559" stroke-width="1.6"></path>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.1 KiB |
9
new-lamassu-admin/src/styling/icons/ID/photo/comet.svg
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="22px" height="16px" viewBox="0 0 22 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/ID/photo/comet</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="icon/ID/photo/comet" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
|
||||
<path d="M11,13 C8.7912,13 7,11.2088 7,9 C7,6.7912 8.7912,5 11,5 C13.2088,5 15,6.7912 15,9 C15,11.2088 13.2088,13 11,13 Z M15.7142857,2.4 L13.3571429,0 L8.64285714,0 L6.28571429,2.4 L0,2.4 L0,16 L22,16 L22,2.4 L15.7142857,2.4 Z" id="Stroke-1" stroke="#FFFFFF" stroke-width="1.6"></path>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 779 B |
9
new-lamassu-admin/src/styling/icons/ID/photo/tomato.svg
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="22px" height="16px" viewBox="0 0 22 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/ID/photo/tomato</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="icon/ID/photo/tomato" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
|
||||
<path d="M11,13 C8.7912,13 7,11.2088 7,9 C7,6.7912 8.7912,5 11,5 C13.2088,5 15,6.7912 15,9 C15,11.2088 13.2088,13 11,13 Z M15.7142857,2.4 L13.3571429,0 L8.64285714,0 L6.28571429,2.4 L0,2.4 L0,16 L22,16 L22,2.4 L15.7142857,2.4 Z" id="Stroke-1" stroke="#FF584A" stroke-width="1.6"></path>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 781 B |
9
new-lamassu-admin/src/styling/icons/ID/photo/white.svg
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="22px" height="16px" viewBox="0 0 22 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/ID/photo/white</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="icon/ID/photo/white" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
|
||||
<path d="M11,13 C8.7912,13 7,11.2088 7,9 C7,6.7912 8.7912,5 11,5 C13.2088,5 15,6.7912 15,9 C15,11.2088 13.2088,13 11,13 Z M15.7142857,2.4 L13.3571429,0 L8.64285714,0 L6.28571429,2.4 L0,2.4 L0,16 L22,16 L22,2.4 L15.7142857,2.4 Z" id="Stroke-1" stroke="#FFFFFF" stroke-width="1.6"></path>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 779 B |
9
new-lamassu-admin/src/styling/icons/ID/photo/zodiac.svg
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="22px" height="16px" viewBox="0 0 22 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/ID/photo/zodiac</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="icon/ID/photo/zodiac" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
|
||||
<path d="M11,13 C8.7912,13 7,11.2088 7,9 C7,6.7912 8.7912,5 11,5 C13.2088,5 15,6.7912 15,9 C15,11.2088 13.2088,13 11,13 Z M15.7142857,2.4 L13.3571429,0 L8.64285714,0 L6.28571429,2.4 L0,2.4 L0,16 L22,16 L22,2.4 L15.7142857,2.4 Z" id="Stroke-1" stroke="#1B2559" stroke-width="1.6"></path>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 781 B |
15
new-lamassu-admin/src/styling/icons/action/arrow/comet.svg
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="13px" height="8px" viewBox="0 0 13 8" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/action/arrow/regular/comet</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<path d="M5.3501239,7.53208616 L0.473798314,2.73082122 C-0.158421727,2.1051411 -0.158421727,1.0952488 0.476737158,0.466675069 C1.11220338,-0.155816755 2.1378971,-0.155816755 2.77494316,0.468226909 L6.49990857,4.13723769 L10.2264532,0.466675069 C10.8619195,-0.155816755 11.8876132,-0.155816755 12.5260183,0.469568675 C13.1582383,1.0952488 13.1582383,2.1051411 12.5245507,2.73226987 L7.64673876,7.53497972 C7.33802629,7.83583835 6.92590837,8 6.49990828,8 C6.0739082,8 5.66179027,7.83583835 5.3501239,7.53208616 Z" id="path-1"></path>
|
||||
</defs>
|
||||
<g id="icon/action/arrow/regular/comet" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<mask id="mask-2" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<use id="Mask" fill="#5F668A" fill-rule="nonzero" xlink:href="#path-1"></use>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.2 KiB |
15
new-lamassu-admin/src/styling/icons/action/arrow/white.svg
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="13px" height="8px" viewBox="0 0 13 8" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/action/arrow/regular/white</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<path d="M5.3501239,7.53208616 L0.473798314,2.73082122 C-0.158421727,2.1051411 -0.158421727,1.0952488 0.476737158,0.466675069 C1.11220338,-0.155816755 2.1378971,-0.155816755 2.77494316,0.468226909 L6.49990857,4.13723769 L10.2264532,0.466675069 C10.8619195,-0.155816755 11.8876132,-0.155816755 12.5260183,0.469568675 C13.1582383,1.0952488 13.1582383,2.1051411 12.5245507,2.73226987 L7.64673876,7.53497972 C7.33802629,7.83583835 6.92590837,8 6.49990828,8 C6.0739082,8 5.66179027,7.83583835 5.3501239,7.53208616 Z" id="path-1"></path>
|
||||
</defs>
|
||||
<g id="icon/action/arrow/regular/white" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<mask id="mask-2" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<use id="Mask" fill="#FFFFFF" fill-rule="nonzero" xlink:href="#path-1"></use>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.2 KiB |
15
new-lamassu-admin/src/styling/icons/action/arrow/zodiac.svg
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="13px" height="8px" viewBox="0 0 13 8" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/action/arrow/regular/zodiac</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<path d="M5.3501239,7.53208616 L0.473798314,2.73082122 C-0.158421727,2.1051411 -0.158421727,1.0952488 0.476737158,0.466675069 C1.11220338,-0.155816755 2.1378971,-0.155816755 2.77494316,0.468226909 L6.49990857,4.13723769 L10.2264532,0.466675069 C10.8619195,-0.155816755 11.8876132,-0.155816755 12.5260183,0.469568675 C13.1582383,1.0952488 13.1582383,2.1051411 12.5245507,2.73226987 L7.64673876,7.53497972 C7.33802629,7.83583835 6.92590837,8 6.49990828,8 C6.0739082,8 5.66179027,7.83583835 5.3501239,7.53208616 Z" id="path-1"></path>
|
||||
</defs>
|
||||
<g id="icon/action/arrow/regular/zodiac" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<mask id="mask-2" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<use id="Mask" fill="#1B2559" fill-rule="nonzero" xlink:href="#path-1"></use>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.2 KiB |
15
new-lamassu-admin/src/styling/icons/action/close/comet.svg
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="18px" height="18px" viewBox="0 0 18 18" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/action/close/comet</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<path d="M11.10567,8.99966734 L17.5616855,15.4562245 C18.1453995,16.0371533 18.1457502,16.9810221 17.5632744,17.5635465 C17.2826878,17.8441564 16.9043531,17.9996031 16.509308,17.9996031 C16.1150437,17.9996031 15.7367759,17.8439272 15.4563692,17.5634971 L8.99995005,11.1055617 L2.54567824,17.5603569 C2.26578723,17.8430155 1.88614994,17.9996031 1.48961505,17.9996031 C1.09473832,17.9996031 0.717380733,17.844225 0.436725633,17.5635465 C-0.145575211,16.9811971 -0.145575211,16.0373273 0.436725633,15.4578096 L6.89433001,8.99966707 L0.438314479,2.54310994 C-0.145399464,1.96218116 -0.145750215,1.01831232 0.436725633,0.435787934 C1.01746304,-0.144997872 1.95893893,-0.144997872 2.54250446,0.435787934 L8.99995074,6.89377234 L15.4580075,0.434202817 C16.0398949,-0.144908147 16.9801496,-0.144559181 17.5632744,0.435787934 C18.1455752,1.0181373 18.1455752,1.96200713 17.5632744,2.54152483 L11.10567,8.99966734 Z" id="path-1"></path>
|
||||
</defs>
|
||||
<g id="icon/action/close/comet" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<mask id="mask-2" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<use id="Mask" fill="#5F668A" xlink:href="#path-1"></use>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.5 KiB |
15
new-lamassu-admin/src/styling/icons/action/close/white.svg
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="18px" height="18px" viewBox="0 0 18 18" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/action/close/white</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<path d="M11.10567,8.99966734 L17.5616855,15.4562245 C18.1453995,16.0371533 18.1457502,16.9810221 17.5632744,17.5635465 C17.2826878,17.8441564 16.9043531,17.9996031 16.509308,17.9996031 C16.1150437,17.9996031 15.7367759,17.8439272 15.4563692,17.5634971 L8.99995005,11.1055617 L2.54567824,17.5603569 C2.26578723,17.8430155 1.88614994,17.9996031 1.48961505,17.9996031 C1.09473832,17.9996031 0.717380733,17.844225 0.436725633,17.5635465 C-0.145575211,16.9811971 -0.145575211,16.0373273 0.436725633,15.4578096 L6.89433001,8.99966707 L0.438314479,2.54310994 C-0.145399464,1.96218116 -0.145750215,1.01831232 0.436725633,0.435787934 C1.01746304,-0.144997872 1.95893893,-0.144997872 2.54250446,0.435787934 L8.99995074,6.89377234 L15.4580075,0.434202817 C16.0398949,-0.144908147 16.9801496,-0.144559181 17.5632744,0.435787934 C18.1455752,1.0181373 18.1455752,1.96200713 17.5632744,2.54152483 L11.10567,8.99966734 Z" id="path-1"></path>
|
||||
</defs>
|
||||
<g id="icon/action/close/white" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<mask id="mask-2" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<use id="Mask" fill="#FFFFFF" xlink:href="#path-1"></use>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.5 KiB |
24
new-lamassu-admin/src/styling/icons/action/close/zodiac.svg
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="18px" height="18px" viewBox="0 0 18 18" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/action/close/zodiac</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<path d="M11.10567,8.99966734 L17.5616855,15.4562245 C18.1453995,16.0371533 18.1457502,16.9810221 17.5632744,17.5635465 C17.2826878,17.8441564 16.9043531,17.9996031 16.509308,17.9996031 C16.1150437,17.9996031 15.7367759,17.8439272 15.4563692,17.5634971 L8.99995005,11.1055617 L2.54567824,17.5603569 C2.26578723,17.8430155 1.88614994,17.9996031 1.48961505,17.9996031 C1.09473832,17.9996031 0.717380733,17.844225 0.436725633,17.5635465 C-0.145575211,16.9811971 -0.145575211,16.0373273 0.436725633,15.4578096 L6.89433001,8.99966707 L0.438314479,2.54310994 C-0.145399464,1.96218116 -0.145750215,1.01831232 0.436725633,0.435787934 C1.01746304,-0.144997872 1.95893893,-0.144997872 2.54250446,0.435787934 L8.99995074,6.89377234 L15.4580075,0.434202817 C16.0398949,-0.144908147 16.9801496,-0.144559181 17.5632744,0.435787934 C18.1455752,1.0181373 18.1455752,1.96200713 17.5632744,2.54152483 L11.10567,8.99966734 Z" id="path-1"></path>
|
||||
<rect id="path-3" x="0" y="0" width="18" height="18"></rect>
|
||||
</defs>
|
||||
<g id="icon/action/close/zodiac" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="color/primary/zodiac" transform="translate(-0.000000, 0.000000)">
|
||||
<mask id="mask-2" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<use id="Mask" fill="#1B2559" xlink:href="#path-1"></use>
|
||||
<g mask="url(#mask-2)">
|
||||
<mask id="mask-4" fill="white">
|
||||
<use xlink:href="#path-3"></use>
|
||||
</mask>
|
||||
<use id="Background" fill="#1B2559" fill-rule="evenodd" xlink:href="#path-3"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2 KiB |
10
new-lamassu-admin/src/styling/icons/action/copy/comet.svg
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/action/copy/comet</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="icon/action/copy/comet" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linejoin="round">
|
||||
<polyline id="Stroke-1" stroke="#5F668A" stroke-width="2" points="6 1.2 6 -0.00024 16 -0.00024 16 13.06376 12 13.06376"></polyline>
|
||||
<polygon id="Stroke-3" stroke="#5F668A" stroke-width="2" stroke-linecap="round" points="0 15.9368 10 15.9368 10 2.9368 0 2.9368"></polygon>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 755 B |
14
new-lamassu-admin/src/styling/icons/action/copy/copy.svg
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="18px" height="18px" viewBox="0 0 18 18" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 56.3 (81716) - https://sketch.com -->
|
||||
<title>icon/action/copy</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="Styleguide" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linejoin="round">
|
||||
<g id="icon/action/copy" transform="translate(1.000000, 1.000000)" stroke="#1B2559">
|
||||
<g id="Group-5-Copy-2">
|
||||
<polyline id="Stroke-1" stroke-width="2" points="6 1.2 6 -0.00024 16 -0.00024 16 13.06376 12 13.06376"></polyline>
|
||||
<polygon id="Stroke-3" stroke-width="2" stroke-linecap="round" points="0 15.9368 10 15.9368 10 2.9368 0 2.9368"></polygon>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 878 B |
10
new-lamassu-admin/src/styling/icons/action/copy/white.svg
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/action/copy/white</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="icon/action/copy/white" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linejoin="round">
|
||||
<polyline id="Stroke-1" stroke="#FFFFFF" stroke-width="2" points="6 1.2 6 -0.00024 16 -0.00024 16 13.06376 12 13.06376"></polyline>
|
||||
<polygon id="Stroke-3" stroke="#FFFFFF" stroke-width="2" stroke-linecap="round" points="0 15.9368 10 15.9368 10 2.9368 0 2.9368"></polygon>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 755 B |
12
new-lamassu-admin/src/styling/icons/action/copy/zodiac.svg
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/action/copy/zodiac</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="icon/action/copy/zodiac" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linejoin="round">
|
||||
<g id="Group-5-Copy-2" stroke="#1B2559" stroke-width="2">
|
||||
<polyline id="Stroke-1" points="6 1.2 6 -0.00024 16 -0.00024 16 13.06376 12 13.06376"></polyline>
|
||||
<polygon id="Stroke-3" stroke-linecap="round" points="0 15.9368 10 15.9368 10 2.9368 0 2.9368"></polygon>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 776 B |
|
|
@ -0,0 +1,24 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/action/delete/disabled</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="0" y="0" width="22" height="22"></rect>
|
||||
</defs>
|
||||
<g id="icon/action/delete/disabled" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<mask id="mask-2" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="Background"></g>
|
||||
<line x1="9" y1="9" x2="9" y2="18" id="Stroke-1" stroke="#9B9B9B" stroke-width="2" stroke-linecap="round" mask="url(#mask-2)"></line>
|
||||
<line x1="13" y1="9" x2="13" y2="18" id="Stroke-2" stroke="#9B9B9B" stroke-width="2" stroke-linecap="round" mask="url(#mask-2)"></line>
|
||||
<g id="Group-9" mask="url(#mask-2)" stroke="#9B9B9B" stroke-linecap="round" stroke-width="2">
|
||||
<g transform="translate(1.000000, 1.000000)">
|
||||
<polyline id="Stroke-3" stroke-linejoin="round" points="2 5 4 20 16 20 18 5"></polyline>
|
||||
<line x1="0" y1="4" x2="20" y2="4" id="Stroke-5"></line>
|
||||
<path d="M13,3 C13,1.343 11.657,0 10,0 C8.343,0 7,1.343 7,3" id="Stroke-7"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.4 KiB |
|
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/action/delete/enabled</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="icon/action/delete/enabled" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round">
|
||||
<line x1="9" y1="9" x2="9" y2="18" id="Stroke-1" stroke="#1B2559" stroke-width="2"></line>
|
||||
<line x1="13" y1="9" x2="13" y2="18" id="Stroke-2" stroke="#1B2559" stroke-width="2"></line>
|
||||
<polyline id="Stroke-3" stroke="#1B2559" stroke-width="2" stroke-linejoin="round" points="3 6 5 21 17 21 19 6"></polyline>
|
||||
<line x1="1" y1="5" x2="21" y2="5" id="Stroke-5" stroke="#1B2559" stroke-width="2"></line>
|
||||
<path d="M14,4 C14,2.343 12.657,1 11,1 C9.343,1 8,2.343 8,4" id="Stroke-7" stroke="#1B2559" stroke-width="2"></path>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1 KiB |
24
new-lamassu-admin/src/styling/icons/action/delete/white.svg
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/action/delete/white</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="0" y="0" width="22" height="22"></rect>
|
||||
</defs>
|
||||
<g id="icon/action/delete/white" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<mask id="mask-2" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="Background"></g>
|
||||
<line x1="9" y1="9" x2="9" y2="18" id="Stroke-1" stroke="#FFFFFF" stroke-width="2" stroke-linecap="round" mask="url(#mask-2)"></line>
|
||||
<line x1="13" y1="9" x2="13" y2="18" id="Stroke-2" stroke="#FFFFFF" stroke-width="2" stroke-linecap="round" mask="url(#mask-2)"></line>
|
||||
<g id="Group-9" mask="url(#mask-2)" stroke="#FFFFFF" stroke-linecap="round" stroke-width="2">
|
||||
<g transform="translate(1.000000, 1.000000)">
|
||||
<polyline id="Stroke-3" stroke-linejoin="round" points="2 5 4 20 16 20 18 5"></polyline>
|
||||
<line x1="0" y1="4" x2="20" y2="4" id="Stroke-5"></line>
|
||||
<path d="M13,3 C13,1.343 11.657,0 10,0 C8.343,0 7,1.343 7,3" id="Stroke-7"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.4 KiB |
17
new-lamassu-admin/src/styling/icons/action/edit/disabled.svg
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/action/edit/disabled</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="0" y="0" width="22" height="22"></rect>
|
||||
</defs>
|
||||
<g id="icon/action/edit/disabled" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<mask id="mask-2" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="Background"></g>
|
||||
<path d="M1,18 L1,18 C1,19.657 2.343,21 4,21 L18,21 C19.657,21 21,19.657 21,18" id="Stroke-1" stroke="#9B9B9B" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" mask="url(#mask-2)"></path>
|
||||
<polygon id="Stroke-3" stroke="#9B9B9B" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" mask="url(#mask-2)" points="6 12 17 1 21 5 10 16 6 16"></polygon>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1 KiB |
17
new-lamassu-admin/src/styling/icons/action/edit/enabled.svg
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/action/edit/enabled</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="0" y="0" width="22" height="22"></rect>
|
||||
</defs>
|
||||
<g id="icon/action/edit/enabled" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<mask id="mask-2" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="Background"></g>
|
||||
<path d="M1,18 L1,18 C1,19.657 2.343,21 4,21 L18,21 C19.657,21 21,19.657 21,18" id="Stroke-1" stroke="#1B2559" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" mask="url(#mask-2)"></path>
|
||||
<polygon id="Stroke-3" stroke="#1B2559" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" mask="url(#mask-2)" points="6 12 17 1 21 5 10 16 6 16"></polygon>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1 KiB |
17
new-lamassu-admin/src/styling/icons/action/edit/white.svg
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/action/edit/white</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="0" y="0" width="22" height="22"></rect>
|
||||
</defs>
|
||||
<g id="icon/action/edit/white" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<mask id="mask-2" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="Background"></g>
|
||||
<path d="M1,18 L1,18 C1,19.657 2.343,21 4,21 L18,21 C19.657,21 21,19.657 21,18" id="Stroke-1" stroke="#FFFFFF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" mask="url(#mask-2)"></path>
|
||||
<polygon id="Stroke-3" stroke="#FFFFFF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" mask="url(#mask-2)" points="6 12 17 1 21 5 10 16 6 16"></polygon>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1 KiB |
13
new-lamassu-admin/src/styling/icons/action/expand/closed.svg
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="16px" height="4px" viewBox="0 0 16 4" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/actions/expand/closed</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="icon/actions/expand/closed" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="show/closed-copy-3" stroke="#1B2559" stroke-width="1.5">
|
||||
<circle id="Oval-4" cx="14" cy="2" r="2"></circle>
|
||||
<circle id="Oval-4-Copy" cx="8" cy="2" r="2"></circle>
|
||||
<circle id="Oval-4-Copy-2" cx="2" cy="2" r="2"></circle>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 733 B |
13
new-lamassu-admin/src/styling/icons/action/expand/open.svg
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="16px" height="4px" viewBox="0 0 16 4" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/actions/expand/open</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="icon/actions/expand/open" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="show/closed-copy-3" fill="#1B2559" stroke="#1B2559" stroke-width="1.5">
|
||||
<circle id="Oval-4" cx="14" cy="2" r="2"></circle>
|
||||
<circle id="Oval-4-Copy" cx="8" cy="2" r="2"></circle>
|
||||
<circle id="Oval-4-Copy-2" cx="2" cy="2" r="2"></circle>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 744 B |
|
|
@ -0,0 +1,11 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/action/external link/white</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="icon/action/external-link/white" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
|
||||
<polyline id="Stroke-1" stroke="#FFFFFF" stroke-width="2" points="20 12.1113 20 21.0003 0 21.0003 0 1.0003 8.889 1.0003"></polyline>
|
||||
<polyline id="Stroke-3" stroke="#FFFFFF" stroke-width="2" points="14.4443 1 20.0003 1 20.0003 6.556"></polyline>
|
||||
<line x1="10" y1="11" x2="20" y2="1" id="Stroke-5" stroke="#FFFFFF" stroke-width="2"></line>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 871 B |
|
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/action/external link/zodiac</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="icon/action/external-link/zodiac" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
|
||||
<g id="Group-7" transform="translate(0.000000, 1.000000)" stroke="#1B2559" stroke-width="2">
|
||||
<polyline id="Stroke-1" points="20 11.1113 20 20.0003 0 20.0003 0 0.0003 8.889 0.0003"></polyline>
|
||||
<polyline id="Stroke-3" points="14.4443 0 20.0003 0 20.0003 5.556"></polyline>
|
||||
<line x1="10" y1="10" x2="20" y2="0" id="Stroke-5"></line>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 897 B |
11
new-lamassu-admin/src/styling/icons/action/help/white.svg
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/action/help/white</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="icon/action/help/white" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<path d="M20.0004,11 C20.0004,6.03028475 15.9701153,2 11.0004,2 C6.03004556,2 2.0004,6.02992391 2.0004,11 C2.0004,15.9700761 6.03004556,20 11.0004,20 C15.9701153,20 20.0004,15.9697153 20.0004,11 Z M22.0004,11 C22.0004,17.0742847 17.0746847,22 11.0004,22 C4.92544514,22 0.000400000001,17.0746147 0.000400000001,11 C0.000400000001,4.92538534 4.92544514,0 11.0004,0 C17.0746847,0 22.0004,4.92571525 22.0004,11 Z" id="Stroke-1" fill="#FFFFFF" fill-rule="nonzero"></path>
|
||||
<path d="M9.9164,8.9063 C9.9164,9.45858475 9.46868475,9.9063 8.9164,9.9063 C8.36411525,9.9063 7.9164,9.45858475 7.9164,8.9063 C7.9164,6.89094438 9.72972438,5.35290249 11.7463843,5.7072003 C13.0663562,5.93764844 14.1348314,7.00654285 14.3652323,8.32479116 C14.6130182,9.7312185 13.941375,11.0876584 12.732214,11.7545735 C12.370484,11.9534687 12.1664,12.2664153 12.1664,12.5913 L12.1664,12.6563 C12.1664,13.2085847 11.7186847,13.6563 11.1664,13.6563 C10.6141153,13.6563 10.1664,13.2085847 10.1664,12.6563 L10.1664,12.5913 C10.1664,11.5009567 10.7946963,10.5375141 11.7674377,10.0026589 C12.2360927,9.74417086 12.493064,9.22519581 12.3953326,8.67046887 C12.3098185,8.1811985 11.8915858,7.76280177 11.4013649,7.67721566 C10.6126181,7.53864454 9.9164,8.1291691 9.9164,8.9063 Z" id="Stroke-3" fill="#FFFFFF" fill-rule="nonzero"></path>
|
||||
<path d="M10.1039,15.2188 C10.1039,14.6318 10.5799,14.1568 11.1659,14.1568 C11.7529,14.1568 12.2289,14.6318 12.2289,15.2188 C12.2289,15.8058 11.7529,16.2808 11.1659,16.2808 C10.5799,16.2808 10.1039,15.8058 10.1039,15.2188" id="Fill-5" fill="#FFFFFF"></path>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2 KiB |
11
new-lamassu-admin/src/styling/icons/action/help/zodiac.svg
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/action/help/zodiac</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="icon/action/help/zodiac" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<path d="M20.0004,11 C20.0004,6.03028475 15.9701153,2 11.0004,2 C6.03004556,2 2.0004,6.02992391 2.0004,11 C2.0004,15.9700761 6.03004556,20 11.0004,20 C15.9701153,20 20.0004,15.9697153 20.0004,11 Z M22.0004,11 C22.0004,17.0742847 17.0746847,22 11.0004,22 C4.92544514,22 0.000400000001,17.0746147 0.000400000001,11 C0.000400000001,4.92538534 4.92544514,0 11.0004,0 C17.0746847,0 22.0004,4.92571525 22.0004,11 Z" id="Stroke-1" fill="#1B2559" fill-rule="nonzero"></path>
|
||||
<path d="M9.9164,8.9063 C9.9164,9.45858475 9.46868475,9.9063 8.9164,9.9063 C8.36411525,9.9063 7.9164,9.45858475 7.9164,8.9063 C7.9164,6.89094438 9.72972438,5.35290249 11.7463843,5.7072003 C13.0663562,5.93764844 14.1348314,7.00654285 14.3652323,8.32479116 C14.6130182,9.7312185 13.941375,11.0876584 12.732214,11.7545735 C12.370484,11.9534687 12.1664,12.2664153 12.1664,12.5913 L12.1664,12.6563 C12.1664,13.2085847 11.7186847,13.6563 11.1664,13.6563 C10.6141153,13.6563 10.1664,13.2085847 10.1664,12.6563 L10.1664,12.5913 C10.1664,11.5009567 10.7946963,10.5375141 11.7674377,10.0026589 C12.2360927,9.74417086 12.493064,9.22519581 12.3953326,8.67046887 C12.3098185,8.1811985 11.8915858,7.76280177 11.4013649,7.67721566 C10.6126181,7.53864454 9.9164,8.1291691 9.9164,8.9063 Z" id="Stroke-3" fill="#1B2559" fill-rule="nonzero"></path>
|
||||
<path d="M10.1039,15.2188 C10.1039,14.6318 10.5799,14.1568 11.1659,14.1568 C11.7529,14.1568 12.2289,14.6318 12.2289,15.2188 C12.2289,15.8058 11.7529,16.2808 11.1659,16.2808 C10.5799,16.2808 10.1039,15.8058 10.1039,15.2188" id="Fill-5" fill="#1B2559"></path>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2 KiB |
|
|
@ -0,0 +1,19 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="12px" height="12px" viewBox="0 0 12 12" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/button/add note/white</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="icon/button/add-note/white" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="Group-2" transform="translate(3.000000, 0.000000)" stroke="#FFFFFF" stroke-linecap="round" stroke-linejoin="round">
|
||||
<polygon id="Stroke-1" points="0.45 11.5384615 8.55 11.5384615 8.55 0.461538462 0.45 0.461538462"></polygon>
|
||||
<line x1="4.5" y1="2.53846154" x2="7.2" y2="2.53846154" id="Stroke-4"></line>
|
||||
<line x1="2.475" y1="4.61538462" x2="7.2" y2="4.61538462" id="Stroke-6"></line>
|
||||
<line x1="2.475" y1="6.69230769" x2="7.2" y2="6.69230769" id="Stroke-8"></line>
|
||||
<line x1="2.475" y1="8.76923077" x2="7.2" y2="8.76923077" id="Stroke-10"></line>
|
||||
</g>
|
||||
<g id="Group-9" transform="translate(0.000000, 4.000000)">
|
||||
<circle id="Oval" stroke="#FFFFFF" fill="#5F668A" cx="4" cy="4" r="4"></circle>
|
||||
<polygon id="Path" fill="#FFFFFF" fill-rule="nonzero" points="4.4 3.6 6.4 3.6 6.4 4.4 4.4 4.4 4.4 6.4 3.6 6.4 3.6 4.4 1.6 4.4 1.6 3.6 3.6 3.6 3.6 1.6 4.4 1.6"></polygon>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.4 KiB |
|
|
@ -0,0 +1,21 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="12px" height="12px" viewBox="0 0 12 12" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/button/add note</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="icon/button/add-note" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="Group-2" transform="translate(3.000000, 0.000000)" stroke="#1B2559" stroke-linecap="round" stroke-linejoin="round">
|
||||
<polygon id="Stroke-1" points="0.45 11.5384615 8.55 11.5384615 8.55 0.461538462 0.45 0.461538462"></polygon>
|
||||
<line x1="4.5" y1="2.53846154" x2="7.2" y2="2.53846154" id="Stroke-4"></line>
|
||||
<line x1="2.475" y1="4.61538462" x2="7.2" y2="4.61538462" id="Stroke-6"></line>
|
||||
<line x1="2.475" y1="6.69230769" x2="7.2" y2="6.69230769" id="Stroke-8"></line>
|
||||
<line x1="2.475" y1="8.76923077" x2="7.2" y2="8.76923077" id="Stroke-10"></line>
|
||||
</g>
|
||||
<g id="Group-9" transform="translate(0.000000, 4.000000)">
|
||||
<circle id="Oval" stroke="#1B2559" fill="#EBEFFF" cx="4" cy="4" r="4"></circle>
|
||||
<g id="Group-6" transform="translate(1.200000, 1.600000)" fill="#1B2559" fill-rule="nonzero">
|
||||
<polygon id="Path" points="3.2 2 5.2 2 5.2 2.8 3.2 2.8 3.2 4.8 2.4 4.8 2.4 2.8 0.4 2.8 0.4 2 2.4 2 2.4 0 3.2 0"></polygon>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.5 KiB |
|
|
@ -0,0 +1,17 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 14 14" style="enable-background:new 0 0 14 14;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:none;stroke:#FFFFFF;stroke-linecap:round;stroke-linejoin:round;}
|
||||
.st1{fill-rule:evenodd;clip-rule:evenodd;fill:#5F668A;stroke:#FFFFFF;}
|
||||
.st2{fill:#FFFFFF;}
|
||||
</style>
|
||||
<path class="st0" d="M4.5,12.5h8.1V1.5H4.5V12.5z"/>
|
||||
<path class="st0" d="M8.5,3.5h2.7"/>
|
||||
<path class="st0" d="M6.5,5.6h4.7"/>
|
||||
<path class="st0" d="M6.5,7.7h4.7"/>
|
||||
<path class="st0" d="M6.5,9.8h4.7"/>
|
||||
<path class="st1" d="M5,13c2.2,0,4-1.8,4-4c0-2.2-1.8-4-4-4S1,6.8,1,9C1,11.2,2.8,13,5,13z"/>
|
||||
<path class="st2" d="M5.4,8.6h2v0.8h-2v2H4.6v-2h-2V8.6h2v-2h0.8V8.6z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 918 B |
|
|
@ -0,0 +1,23 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="14px" height="14px" viewBox="0 0 14 14" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 56.3 (81716) - https://sketch.com -->
|
||||
<title>icon/button/add note</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="Styleguide" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon/button/add-note" transform="translate(1.000000, 1.000000)">
|
||||
<g id="Group-2" transform="translate(3.000000, 0.000000)" stroke="#1B2559" stroke-linecap="round" stroke-linejoin="round">
|
||||
<polygon id="Stroke-1" points="0.45 11.5384615 8.55 11.5384615 8.55 0.461538462 0.45 0.461538462"></polygon>
|
||||
<path d="M4.5,2.53846154 L7.2,2.53846154" id="Stroke-4"></path>
|
||||
<path d="M2.475,4.61538462 L7.2,4.61538462" id="Stroke-6"></path>
|
||||
<path d="M2.475,6.69230769 L7.2,6.69230769" id="Stroke-8"></path>
|
||||
<path d="M2.475,8.76923077 L7.2,8.76923077" id="Stroke-10"></path>
|
||||
</g>
|
||||
<g id="Group-9" transform="translate(0.000000, 4.000000)">
|
||||
<circle id="Oval" stroke="#1B2559" fill="#EBEFFF" cx="4" cy="4" r="4"></circle>
|
||||
<g id="Group-6" transform="translate(1.200000, 1.600000)" fill="#1B2559" fill-rule="nonzero">
|
||||
<polygon id="Path" points="3.2 2 5.2 2 5.2 2.8 3.2 2.8 3.2 4.8 2.4 4.8 2.4 2.8 0.4 2.8 0.4 2 2.4 2 2.4 0 3.2 0"></polygon>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.5 KiB |
11
new-lamassu-admin/src/styling/icons/button/add/white.svg
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="12px" height="12px" viewBox="0 0 12 12" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/button/add/white</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="icon/button/add/white" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
|
||||
<path d="M11.5384615,6 C11.5384615,9.05815385 9.05815385,11.5384615 6,11.5384615 C2.94184615,11.5384615 0.461538462,9.05815385 0.461538462,6 C0.461538462,2.94184615 2.94184615,0.461538462 6,0.461538462 C9.05815385,0.461538462 11.5384615,2.94184615 11.5384615,6 Z" id="Stroke-1" stroke="#FFFFFF"></path>
|
||||
<line x1="6" y1="3.69230769" x2="6" y2="8.30769231" id="Stroke-3" stroke="#FFFFFF"></line>
|
||||
<line x1="3.69230769" y1="6" x2="8.30769231" y2="6" id="Stroke-5" stroke="#FFFFFF"></line>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 997 B |
11
new-lamassu-admin/src/styling/icons/button/add/zodiac.svg
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="12px" height="12px" viewBox="0 0 12 12" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/button/add/zodiac</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="icon/button/add/zodiac" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
|
||||
<path d="M11.5384615,6 C11.5384615,9.05815385 9.05815385,11.5384615 6,11.5384615 C2.94184615,11.5384615 0.461538462,9.05815385 0.461538462,6 C0.461538462,2.94184615 2.94184615,0.461538462 6,0.461538462 C9.05815385,0.461538462 11.5384615,2.94184615 11.5384615,6 Z" id="Stroke-1" stroke="#1B2559"></path>
|
||||
<line x1="6" y1="3.69230769" x2="6" y2="8.30769231" id="Stroke-3" stroke="#1B2559"></line>
|
||||
<line x1="3.69230769" y1="6" x2="8.30769231" y2="6" id="Stroke-5" stroke="#1B2559"></line>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 999 B |
|
|
@ -0,0 +1,10 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="12px" height="12px" viewBox="0 0 12 12" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/button/authorize/white</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="icon/button/authorize/white" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<circle id="Oval" stroke="#FFFFFF" cx="6" cy="6" r="6"></circle>
|
||||
<polyline id="Stroke-13" stroke="#FFFFFF" stroke-linecap="round" stroke-linejoin="round" points="4 6.66666667 5 8 8 4"></polyline>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 665 B |
|
|
@ -0,0 +1,12 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="12px" height="12px" viewBox="0 0 12 12" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/button/authorize/zodiac</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="icon/button/authorize/zodiac" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="Group-9" stroke="#1B2559">
|
||||
<circle id="Oval" cx="6" cy="6" r="6"></circle>
|
||||
</g>
|
||||
<polyline id="Stroke-13" stroke="#1B2559" stroke-linecap="round" stroke-linejoin="round" points="4 6.66666667 5 8 8 4"></polyline>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 709 B |
|
|
@ -0,0 +1,19 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="12px" height="12px" viewBox="0 0 12 12" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/button/blacklist/white</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="icon/button/blacklist/white" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="Group-2" transform="translate(3.000000, 0.000000)" stroke-linecap="round" stroke-linejoin="round">
|
||||
<polygon id="Stroke-1" stroke="#FFFFFF" fill="#FFFFFF" points="0.45 11.5384615 8.55 11.5384615 8.55 0.461538462 0.45 0.461538462"></polygon>
|
||||
<line x1="1.97637558" y1="2.53846154" x2="7.2" y2="2.53846154" id="Stroke-4" stroke="#1B2559"></line>
|
||||
<line x1="2.475" y1="4.61538462" x2="7.2" y2="4.61538462" id="Stroke-6" stroke="#1B2559"></line>
|
||||
<line x1="2.475" y1="6.69230769" x2="7.2" y2="6.69230769" id="Stroke-8" stroke="#1B2559"></line>
|
||||
<line x1="2.475" y1="8.76923077" x2="7.2" y2="8.76923077" id="Stroke-10" stroke="#1B2559"></line>
|
||||
</g>
|
||||
<g id="Group-9" transform="translate(0.000000, 4.000000)">
|
||||
<circle id="Oval" stroke="#FFFFFF" fill="#5F668A" cx="4" cy="4" r="4"></circle>
|
||||
<polygon id="Path" fill="#FFFFFF" fill-rule="nonzero" points="4.4 3.6 6.4 3.6 6.4 4.4 4.4 4.4 4.4 6.4 3.6 6.4 3.6 4.4 1.6 4.4 1.6 3.6 3.6 3.6 3.6 1.6 4.4 1.6"></polygon>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.5 KiB |
|
|
@ -0,0 +1,21 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="12px" height="12px" viewBox="0 0 12 12" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/button/blacklist/zodiac</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="icon/button/blacklist/zodiac" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="Group-2" transform="translate(3.000000, 0.000000)" stroke-linecap="round" stroke-linejoin="round">
|
||||
<polygon id="Stroke-1" stroke="#1B2559" fill="#1B2559" points="0.45 11.5384615 8.55 11.5384615 8.55 0.461538462 0.45 0.461538462"></polygon>
|
||||
<line x1="1.97637558" y1="2.53846154" x2="7.2" y2="2.53846154" id="Stroke-4" stroke="#FFFFFF"></line>
|
||||
<line x1="2.475" y1="4.61538462" x2="7.2" y2="4.61538462" id="Stroke-6" stroke="#FFFFFF"></line>
|
||||
<line x1="2.475" y1="6.69230769" x2="7.2" y2="6.69230769" id="Stroke-8" stroke="#FFFFFF"></line>
|
||||
<line x1="2.475" y1="8.76923077" x2="7.2" y2="8.76923077" id="Stroke-10" stroke="#FFFFFF"></line>
|
||||
</g>
|
||||
<g id="Group-9" transform="translate(0.000000, 4.000000)">
|
||||
<circle id="Oval" stroke="#1B2559" fill="#EBEFFF" cx="4" cy="4" r="4"></circle>
|
||||
<g id="Group-6" transform="translate(1.200000, 1.600000)" fill="#1B2559" fill-rule="nonzero">
|
||||
<polygon id="Path" points="3.2 2 5.2 2 5.2 2.8 3.2 2.8 3.2 4.8 2.4 4.8 2.4 2.8 0.4 2.8 0.4 2 2.4 2 2.4 0 3.2 0"></polygon>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.6 KiB |
12
new-lamassu-admin/src/styling/icons/button/block/white.svg
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="12px" height="12px" viewBox="0 0 12 12" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/button/block/white</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="icon/button/block/white" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
|
||||
<g id="Group-5" stroke="#FFFFFF">
|
||||
<path d="M12,6 C12,9.3138 9.3132,12 6,12 C2.6868,12 0,9.3138 0,6 C0,2.6862 2.6868,0 6,0 C9.3132,0 12,2.6862 12,6 Z" id="Stroke-1"></path>
|
||||
<line x1="10.2" y1="1.8" x2="1.8" y2="10.2" id="Stroke-3"></line>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 775 B |
12
new-lamassu-admin/src/styling/icons/button/block/zodiac.svg
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="12px" height="12px" viewBox="0 0 12 12" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/button/block/zodiac</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="icon/button/block/zodiac" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
|
||||
<g id="Group-5" stroke="#1B2559">
|
||||
<path d="M12,6 C12,9.3138 9.3132,12 6,12 C2.6868,12 0,9.3138 0,6 C0,2.6862 2.6868,0 6,0 C9.3132,0 12,2.6862 12,6 Z" id="Stroke-1"></path>
|
||||
<line x1="10.2" y1="1.8" x2="1.8" y2="10.2" id="Stroke-3"></line>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 777 B |
12
new-lamassu-admin/src/styling/icons/button/cancel/white.svg
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="12px" height="12px" viewBox="0 0 12 12" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/button/cancel/white</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="icon/button/cancel/white" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
|
||||
<g id="Group-5" transform="translate(1.000000, 1.000000)" stroke="#FFFFFF">
|
||||
<line x1="10" y1="0" x2="0" y2="10" id="Stroke-1"></line>
|
||||
<line x1="0" y1="0" x2="10" y2="10" id="Stroke-3"></line>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 731 B |
12
new-lamassu-admin/src/styling/icons/button/cancel/zodiac.svg
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="12px" height="12px" viewBox="0 0 12 12" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/button/cancel/zodiac</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="icon/button/cancel/zodiac" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
|
||||
<g id="Group-5" stroke="#1B2559" stroke-width="1.2">
|
||||
<line x1="12" y1="0" x2="0" y2="12" id="Stroke-1"></line>
|
||||
<line x1="0" y1="0" x2="12" y2="12" id="Stroke-3"></line>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 710 B |
|
|
@ -0,0 +1,10 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="12px" height="12px" viewBox="0 0 12 12" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/button/configure/white</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="icon/button/configure/white" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
|
||||
<path d="M7.341,9.85819137 L8.755,9.06119137 L10.144,10.4221914 C11.096,9.57519137 11.726,8.47119137 11.993,7.28619137 L10.096,6.79319137 L10.096,5.19919137 L12,4.70419137 C11.868,4.11919137 11.644,3.54319137 11.32,2.99619137 C10.997,2.44919137 10.599,1.97119137 10.146,1.56719137 L8.755,2.93019137 L7.341,2.13319137 L7.853,0.282191366 C6.667,-0.0838086336 5.374,-0.102808634 4.147,0.278191366 L4.659,2.13219137 L3.245,2.93019137 L1.857,1.56919137 C0.904,2.41719137 0.276,3.52019137 0.007,4.70619137 L1.904,5.19919137 L1.904,6.79319137 L0,7.28719137 C0.132,7.87319137 0.357,8.44919137 0.68,8.99619137 C1.003,9.54319137 1.402,10.0201914 1.855,10.4241914 L3.245,9.06119137 L4.659,9.85919137 L4.148,11.7101914 C5.333,12.0761914 6.626,12.0941914 7.854,11.7131914 L7.341,9.85819137 Z" id="Stroke-1" stroke="#FFFFFF"></path>
|
||||
<path d="M7.0002,5.99589137 C7.0002,5.44289137 6.5532,4.99589137 6.0002,4.99589137 C5.4472,4.99589137 5.0002,5.44289137 5.0002,5.99589137 C5.0002,6.54889137 5.4472,6.99589137 6.0002,6.99589137 C6.5532,6.99589137 7.0002,6.54889137 7.0002,5.99589137 Z" id="Stroke-3" stroke="#FFFFFF"></path>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.6 KiB |
|
|
@ -0,0 +1,10 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="12px" height="12px" viewBox="0 0 12 12" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/button/configure/zodiac</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="icon/button/configure/zodiac" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
|
||||
<path d="M7.341,9.85819137 L8.755,9.06119137 L10.144,10.4221914 C11.096,9.57519137 11.726,8.47119137 11.993,7.28619137 L10.096,6.79319137 L10.096,5.19919137 L12,4.70419137 C11.868,4.11919137 11.644,3.54319137 11.32,2.99619137 C10.997,2.44919137 10.599,1.97119137 10.146,1.56719137 L8.755,2.93019137 L7.341,2.13319137 L7.853,0.282191366 C6.667,-0.0838086336 5.374,-0.102808634 4.147,0.278191366 L4.659,2.13219137 L3.245,2.93019137 L1.857,1.56919137 C0.904,2.41719137 0.276,3.52019137 0.007,4.70619137 L1.904,5.19919137 L1.904,6.79319137 L0,7.28719137 C0.132,7.87319137 0.357,8.44919137 0.68,8.99619137 C1.003,9.54319137 1.402,10.0201914 1.855,10.4241914 L3.245,9.06119137 L4.659,9.85919137 L4.148,11.7101914 C5.333,12.0761914 6.626,12.0941914 7.854,11.7131914 L7.341,9.85819137 Z" id="Stroke-1" stroke="#1B2559"></path>
|
||||
<path d="M7.0002,5.99589137 C7.0002,5.44289137 6.5532,4.99589137 6.0002,4.99589137 C5.4472,4.99589137 5.0002,5.44289137 5.0002,5.99589137 C5.0002,6.54889137 5.4472,6.99589137 6.0002,6.99589137 C6.5532,6.99589137 7.0002,6.54889137 7.0002,5.99589137 Z" id="Stroke-3" stroke="#1B2559"></path>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.6 KiB |
|
|
@ -1,15 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="14px" height="13px" viewBox="0 0 14 13" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 56.3 (81716) - https://sketch.com -->
|
||||
<svg width="12px" height="12px" viewBox="0 0 12 12" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/button/download/white</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="Styleguide" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
|
||||
<g id="icon/button/download/white" transform="translate(1.000000, 0.000000)" stroke="#FFFFFF">
|
||||
<g id="icon/sf-small/wizzard">
|
||||
<polyline id="Path-3" points="3.6 5.4 6 7.8 8.4 5.4"></polyline>
|
||||
<path d="M6,0.5 L6,7.4" id="Path-4"></path>
|
||||
<path d="M0,10 L0,10 C0,10.9942 0.8058,11.8 1.8,11.8 L10.2,11.8 C11.1942,11.8 12,10.9942 12,10" id="Stroke-1"></path>
|
||||
</g>
|
||||
<g id="icon/button/download/white" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
|
||||
<g id="icon/sf-small/wizzard" stroke="#FFFFFF">
|
||||
<polyline id="Path-3" points="3.6 5.4 6 7.8 8.4 5.4"></polyline>
|
||||
<line x1="6" y1="0.5" x2="6" y2="7.4" id="Path-4"></line>
|
||||
<path d="M0,10 L0,10 C0,10.9942 0.8058,11.8 1.8,11.8 L10.2,11.8 C11.1942,11.8 12,10.9942 12,10" id="Stroke-1"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 933 B After Width: | Height: | Size: 844 B |
|
|
@ -1,15 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="14px" height="13px" viewBox="0 0 14 13" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 56.3 (81716) - https://sketch.com -->
|
||||
<svg width="12px" height="12px" viewBox="0 0 12 12" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/button/download/zodiac</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="Styleguide" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
|
||||
<g id="icon/button/download/zodiac" transform="translate(1.000000, 0.000000)" stroke="#1B2559">
|
||||
<g id="icon/sf-small/wizzard">
|
||||
<polyline id="Path-3" points="3.6 5.4 6 7.8 8.4 5.4"></polyline>
|
||||
<path d="M6,0.5 L6,7.4" id="Path-4"></path>
|
||||
<path d="M0,10 L0,10 C0,10.9942 0.8058,11.8 1.8,11.8 L10.2,11.8 C11.1942,11.8 12,10.9942 12,10" id="Stroke-1"></path>
|
||||
</g>
|
||||
<g id="icon/button/download/zodiac" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
|
||||
<g id="icon/sf-small/wizzard" stroke="#1B2559">
|
||||
<polyline id="Path-3" points="3.6 5.4 6 7.8 8.4 5.4"></polyline>
|
||||
<line x1="6" y1="0.5" x2="6" y2="7.4" id="Path-4"></line>
|
||||
<path d="M0,10 L0,10 C0,10.9942 0.8058,11.8 1.8,11.8 L10.2,11.8 C11.1942,11.8 12,10.9942 12,10" id="Stroke-1"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 935 B After Width: | Height: | Size: 846 B |
10
new-lamassu-admin/src/styling/icons/button/edit/white.svg
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="12px" height="12px" viewBox="0 0 12 12" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/button/edit/white</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="icon/button/edit/white" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
|
||||
<path d="M0,10 L0,10 C0,10.9942 0.8058,11.8 1.8,11.8 L10.2,11.8 C11.1942,11.8 12,10.9942 12,10" id="Stroke-1" stroke="#FFFFFF"></path>
|
||||
<polygon id="Stroke-3" stroke="#FFFFFF" points="3 6.86666667 8.86666667 1 11 3.13333333 5.13333333 9 3 9"></polygon>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 758 B |
10
new-lamassu-admin/src/styling/icons/button/edit/zodiac.svg
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="12px" height="12px" viewBox="0 0 12 12" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/button/edit/zodiac</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="icon/button/edit/zodiac" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
|
||||
<path d="M0,10 L0,10 C0,10.9942 0.8058,11.8 1.8,11.8 L10.2,11.8 C11.1942,11.8 12,10.9942 12,10" id="Stroke-1" stroke="#1B2559"></path>
|
||||
<polygon id="Stroke-3" stroke="#1B2559" points="3 6.86666667 8.86666667 1 11 3.13333333 5.13333333 9 3 9"></polygon>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 760 B |
|
|
@ -0,0 +1,20 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="12px" height="12px" viewBox="0 0 12 12" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/button/export to PDF/white</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="icon/button/export-to-PDF/white" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="Group-12" transform="translate(5.000000, 4.000000)" stroke="#FFFFFF" stroke-linecap="round">
|
||||
<line x1="0.846153846" y1="1.07692308" x2="4.07692308" y2="1.07692308" id="Path-7"></line>
|
||||
<line x1="0.846153846" y1="2.92307692" x2="5.46153846" y2="2.92307692" id="Path-7-Copy"></line>
|
||||
<line x1="0.846153846" y1="4.76923077" x2="5.46153846" y2="4.76923077" id="Path-7-Copy-2"></line>
|
||||
</g>
|
||||
<polygon id="Stroke-7" stroke="#FFFFFF" stroke-linecap="round" stroke-linejoin="round" points="12 11 4 11 4 0 9.33333333 1.73325476e-12 12 3.02290076"></polygon>
|
||||
<polygon id="Path-5" stroke="#FFFFFF" stroke-linejoin="round" points="9 0 9 2.76923077 11.7692308 2.76923077"></polygon>
|
||||
<circle id="Oval" stroke="#FFFFFF" fill="#5F668A" cx="3.69230769" cy="8.69230769" r="3.69230769"></circle>
|
||||
<g id="Group-11" transform="translate(1.846154, 6.846154)" stroke="#FFFFFF" stroke-linecap="round" stroke-linejoin="round">
|
||||
<line x1="1.84615385" y1="0.131868132" x2="1.84615385" y2="3.69230769" id="Line-2"></line>
|
||||
<polyline id="Path-8" points="0 1.84615385 1.84615385 0 3.69230769 1.84615385"></polyline>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.6 KiB |
|
|
@ -0,0 +1,20 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="12px" height="12px" viewBox="0 0 12 12" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/button/export to PDF/zodiac</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="icon/button/export-to-PDF/zodiac" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="Group-12" transform="translate(5.000000, 4.000000)" stroke="#1B2559" stroke-linecap="round">
|
||||
<line x1="0.846153846" y1="1.07692308" x2="4.07692308" y2="1.07692308" id="Path-7"></line>
|
||||
<line x1="0.846153846" y1="2.92307692" x2="5.46153846" y2="2.92307692" id="Path-7-Copy"></line>
|
||||
<line x1="0.846153846" y1="4.76923077" x2="5.46153846" y2="4.76923077" id="Path-7-Copy-2"></line>
|
||||
</g>
|
||||
<polygon id="Stroke-7" stroke="#1B2559" stroke-linecap="round" stroke-linejoin="round" points="12 11 4 11 4 0 9.33333333 1.73325476e-12 12 3.02290076"></polygon>
|
||||
<polygon id="Path-5" stroke="#1B2559" stroke-linejoin="round" points="9 0 9 2.76923077 11.7692308 2.76923077"></polygon>
|
||||
<circle id="Oval" stroke="#1B2559" fill="#EBEFFF" cx="3.69230769" cy="8.69230769" r="3.69230769"></circle>
|
||||
<g id="Group-11" transform="translate(1.846154, 6.846154)" stroke="#1B2559" stroke-linecap="round" stroke-linejoin="round">
|
||||
<line x1="1.84615385" y1="0.131868132" x2="1.84615385" y2="3.69230769" id="Line-2"></line>
|
||||
<polyline id="Path-8" points="0 1.84615385 1.84615385 0 3.69230769 1.84615385"></polyline>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.6 KiB |
|
|
@ -0,0 +1,10 @@
|
|||
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M6.8457 6.07693H10.0765" stroke="white" stroke-linecap="round"/>
|
||||
<path d="M6.8457 7.92309H11.4611" stroke="white" stroke-linecap="round"/>
|
||||
<path d="M6.8457 9.76925H11.4611" stroke="white" stroke-linecap="round"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M13 12H5L5 1L10.3333 1L13 4.0229V12Z" stroke="white" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M10 1V3.76923H12.7692L10 1Z" stroke="white" stroke-linejoin="round"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.69231 13.3846C6.73151 13.3846 8.38462 11.7315 8.38462 9.69231C8.38462 7.6531 6.73151 6 4.69231 6C2.6531 6 1 7.6531 1 9.69231C1 11.7315 2.6531 13.3846 4.69231 13.3846Z" fill="#5F668A" stroke="white"/>
|
||||
<path d="M4.69163 7.97803V11.5385" stroke="white" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M2.8457 9.69231L4.69186 7.84616L6.53801 9.69231" stroke="white" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1 KiB |
11
new-lamassu-admin/src/styling/icons/button/ignore/white.svg
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="12px" height="12px" viewBox="0 0 12 12" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/button/ignore/white</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="icon/button/ignore/white" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<circle id="Oval" stroke="#FFFFFF" cx="6" cy="6" r="6"></circle>
|
||||
<line x1="7.5" y1="2.8" x2="7.5" y2="8.8" id="Line-11-Copy" stroke="#FFFFFF" stroke-linecap="round"></line>
|
||||
<line x1="4.5" y1="2.8" x2="4.5" y2="8.8" id="Line-11-Copy-2" stroke="#FFFFFF" stroke-linecap="round"></line>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 754 B |
11
new-lamassu-admin/src/styling/icons/button/ignore/zodiac.svg
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="12px" height="12px" viewBox="0 0 12 12" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/button/ignore/zodiac</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="icon/button/ignore/zodiac" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<circle id="Oval" stroke="#1B2559" cx="6" cy="6" r="6"></circle>
|
||||
<line x1="7.5" y1="2.8" x2="7.5" y2="8.8" id="Line-11-Copy" stroke="#1B2559" stroke-linecap="round"></line>
|
||||
<line x1="4.5" y1="2.8" x2="4.5" y2="8.8" id="Line-11-Copy-2" stroke="#1B2559" stroke-linecap="round"></line>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 756 B |
20
new-lamassu-admin/src/styling/icons/button/link/export.svg
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="12px" height="12px" viewBox="0 0 12 12" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/button/link/export</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="icon/button/link/export" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="Group-12" transform="translate(5.000000, 4.000000)" stroke="#1B2559" stroke-linecap="round">
|
||||
<line x1="0.846153846" y1="1.07692308" x2="4.07692308" y2="1.07692308" id="Path-7"></line>
|
||||
<line x1="0.846153846" y1="2.92307692" x2="5.46153846" y2="2.92307692" id="Path-7-Copy"></line>
|
||||
<line x1="0.846153846" y1="4.76923077" x2="5.46153846" y2="4.76923077" id="Path-7-Copy-2"></line>
|
||||
</g>
|
||||
<polygon id="Stroke-7" stroke="#1B2559" stroke-linecap="round" stroke-linejoin="round" points="12 11 4 11 4 0 9.33333333 1.73325476e-12 12 3.02290076"></polygon>
|
||||
<polygon id="Path-5" stroke="#1B2559" stroke-linejoin="round" points="9 0 9 2.76923077 11.7692308 2.76923077"></polygon>
|
||||
<circle id="Oval" stroke="#1B2559" fill="#EBEFFF" cx="3.69230769" cy="8.69230769" r="3.69230769"></circle>
|
||||
<g id="Group-11" transform="translate(1.846154, 6.846154)" stroke="#1B2559" stroke-linecap="round" stroke-linejoin="round">
|
||||
<line x1="1.84615385" y1="0.131868132" x2="1.84615385" y2="3.69230769" id="Line-2"></line>
|
||||
<polyline id="Path-8" points="0 1.84615385 1.84615385 0 3.69230769 1.84615385"></polyline>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.6 KiB |
13
new-lamassu-admin/src/styling/icons/button/link/white.svg
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="12px" height="12px" viewBox="0 0 12 12" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/button/link/white</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="icon/button/link/white" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
|
||||
<g id="Group-7" stroke="#FFFFFF" stroke-width="1.2">
|
||||
<polyline id="Stroke-1" points="12 6.66678 12 12.00018 0 12.00018 0 0.00018 5.3334 0.00018"></polyline>
|
||||
<polyline id="Stroke-3" points="8.66658 0 12.00018 0 12.00018 3.3336"></polyline>
|
||||
<line x1="6" y1="6" x2="12" y2="0" id="Stroke-5"></line>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 843 B |
13
new-lamassu-admin/src/styling/icons/button/link/zodiac.svg
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="12px" height="12px" viewBox="0 0 12 12" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/button/link/zodiac</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="icon/button/link/zodiac" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
|
||||
<g id="Group-7" stroke="#1B2559" stroke-width="1.2">
|
||||
<polyline id="Stroke-1" points="12 6.66678 12 12.00018 0 12.00018 0 0.00018 5.3334 0.00018"></polyline>
|
||||
<polyline id="Stroke-3" points="8.66658 0 12.00018 0 12.00018 3.3336"></polyline>
|
||||
<line x1="6" y1="6" x2="12" y2="0" id="Stroke-5"></line>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 845 B |
19
new-lamassu-admin/src/styling/icons/button/reboot/white.svg
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="12px" height="12px" viewBox="0 0 12 12" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/button/reboot/white</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="icon/button/reboot/white" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
|
||||
<g id="Group-3" stroke="#FFFFFF">
|
||||
<g id="Group-2">
|
||||
<path d="M3.57419317,11.1560104 C2.91506589,10.8661403 2.29620875,10.4522182 1.75493083,9.91362078 C-0.568892549,7.60089351 -0.587250991,3.86936104 1.71406849,1.57845195 C2.03057585,1.26367293 2.37407977,0.992496226 2.73740775,0.764921841" id="Stroke-1"></path>
|
||||
<polyline id="Stroke-3" points="3.37563213 1.84831169 3.36911784 0.595324675 2.18174122 4.15223411e-14"></polyline>
|
||||
</g>
|
||||
<line x1="5.92223784" y1="7.57277922" x2="5.92223784" y2="3.98212987" id="Stroke-9"></line>
|
||||
<g id="Group-2" transform="translate(9.818105, 6.000000) scale(-1, -1) translate(-9.818105, -6.000000) translate(7.636287, 0.000000)">
|
||||
<path d="M3.57419317,11.1560104 C2.91506589,10.8661403 2.29620875,10.4522182 1.75493083,9.91362078 C-0.568892549,7.60089351 -0.587250991,3.86936104 1.71406849,1.57845195 C2.03057585,1.26367293 2.37407977,0.992496226 2.73740775,0.764921841" id="Stroke-1"></path>
|
||||
<polyline id="Stroke-3" points="3.37563213 1.84831169 3.36911784 0.595324675 2.18174122 4.15223411e-14"></polyline>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.6 KiB |
19
new-lamassu-admin/src/styling/icons/button/reboot/zodiac.svg
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="12px" height="12px" viewBox="0 0 12 12" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/button/reboot/zodiac</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="icon/button/reboot/zodiac" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
|
||||
<g id="Group-3" stroke="#1B2559">
|
||||
<g id="Group-2">
|
||||
<path d="M3.57419317,11.1560104 C2.91506589,10.8661403 2.29620875,10.4522182 1.75493083,9.91362078 C-0.568892549,7.60089351 -0.587250991,3.86936104 1.71406849,1.57845195 C2.03057585,1.26367293 2.37407977,0.992496226 2.73740775,0.764921841" id="Stroke-1"></path>
|
||||
<polyline id="Stroke-3" points="3.37563213 1.84831169 3.36911784 0.595324675 2.18174122 4.15223411e-14"></polyline>
|
||||
</g>
|
||||
<line x1="5.92223784" y1="7.57277922" x2="5.92223784" y2="3.98212987" id="Stroke-9"></line>
|
||||
<g id="Group-2" transform="translate(9.818105, 6.000000) scale(-1, -1) translate(-9.818105, -6.000000) translate(7.636287, 0.000000)">
|
||||
<path d="M3.57419317,11.1560104 C2.91506589,10.8661403 2.29620875,10.4522182 1.75493083,9.91362078 C-0.568892549,7.60089351 -0.587250991,3.86936104 1.71406849,1.57845195 C2.03057585,1.26367293 2.37407977,0.992496226 2.73740775,0.764921841" id="Stroke-1"></path>
|
||||
<polyline id="Stroke-3" points="3.37563213 1.84831169 3.36911784 0.595324675 2.18174122 4.15223411e-14"></polyline>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.6 KiB |
12
new-lamassu-admin/src/styling/icons/button/retry/white.svg
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="12px" height="12px" viewBox="0 0 12 12" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/button/retry/white</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="icon/button/retry/white" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
|
||||
<g id="Group-7" stroke="#FFFFFF">
|
||||
<path d="M7.1942452e-14,9.603 L0.002,3.598 C0.003,1.611 1.614,-5.86197757e-14 3.602,-5.86197757e-14 L8.4,-5.86197757e-14 C10.39,-5.86197757e-14 12.001,1.613 12,3.601 L11.998,7.205 C11.998,9.192 10.386,10.803 8.398,10.803 L3,10.803" id="Stroke-1"></path>
|
||||
<polyline id="Stroke-3" points="4.2002 9.601 3.0002 10.8 4.2002 12"></polyline>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 905 B |
12
new-lamassu-admin/src/styling/icons/button/retry/zodiac.svg
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="12px" height="12px" viewBox="0 0 12 12" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/button/retry/zodiac</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="icon/button/retry/zodiac" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
|
||||
<g id="Group-7" stroke="#1B2559">
|
||||
<path d="M7.1942452e-14,9.603 L0.002,3.598 C0.003,1.611 1.614,-5.86197757e-14 3.602,-5.86197757e-14 L8.4,-5.86197757e-14 C10.39,-5.86197757e-14 12.001,1.613 12,3.601 L11.998,7.205 C11.998,9.192 10.386,10.803 8.398,10.803 L3,10.803" id="Stroke-1"></path>
|
||||
<polyline id="Stroke-3" points="4.2002 9.601 3.0002 10.8 4.2002 12"></polyline>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 907 B |
|
|
@ -0,0 +1,10 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="12px" height="12px" viewBox="0 0 12 12" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/button/schedule/white</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="icon/button/schedule/white" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<polyline id="Stroke-1" stroke="#FFFFFF" stroke-linecap="round" stroke-linejoin="round" points="8 7 6 7 6 4"></polyline>
|
||||
<circle id="Oval" stroke="#FFFFFF" cx="6" cy="6" r="6"></circle>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 653 B |
|
|
@ -0,0 +1,10 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="12px" height="12px" viewBox="0 0 12 12" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/button/shedule/zodiac</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="icon/button/shedule/zodiac" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<polyline id="Stroke-1" stroke="#1B2559" stroke-linecap="round" stroke-linejoin="round" points="8 7 6 7 6 4"></polyline>
|
||||
<circle id="Oval" stroke="#1B2559" cx="6" cy="6" r="6"></circle>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 653 B |
|
|
@ -0,0 +1,12 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="12px" height="12px" viewBox="0 0 12 12" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/button/shut down/white</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="icon/button/shut-down/white" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
|
||||
<g id="Group-5" transform="translate(1.000000, 0.000000)" stroke="#FFFFFF">
|
||||
<path d="M7.7735,2 C9.116,2.89710351 10,4.4271328 10,6.16330077 C10,8.92665975 7.7615,11.1666667 5,11.1666667 C2.2385,11.1666667 0,8.92665975 0,6.16330077 C0,4.43663919 0.8745,2.91361461 2.204,2.01450976" id="Stroke-1"></path>
|
||||
<line x1="5" y1="0.75" x2="5" y2="3.25" id="Stroke-3"></line>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 910 B |
|
|
@ -0,0 +1,12 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="12px" height="12px" viewBox="0 0 12 12" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/button/shut down/zodiac</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="icon/button/shut-down/zodiac" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
|
||||
<g id="Group-5" transform="translate(1.000000, 0.000000)" stroke="#1B2559">
|
||||
<path d="M7.7735,2 C9.116,2.89710351 10,4.4271328 10,6.16330077 C10,8.92665975 7.7615,11.1666667 5,11.1666667 C2.2385,11.1666667 0,8.92665975 0,6.16330077 C0,4.43663919 0.8745,2.91361461 2.204,2.01450976" id="Stroke-1"></path>
|
||||
<line x1="5" y1="0.75" x2="5" y2="3.25" id="Stroke-3"></line>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 912 B |
|
|
@ -0,0 +1,9 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="12px" height="12px" viewBox="0 0 12 12" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/button/stop-ignoring/white</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="icon/button/stop-ignoring/white" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linejoin="round">
|
||||
<polygon id="Triangle" stroke="#FFFFFF" transform="translate(6.000000, 6.000000) rotate(-270.000000) translate(-6.000000, -6.000000) " points="6 2 12 10 0 10"></polygon>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 663 B |
|
|
@ -0,0 +1,9 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="12px" height="12px" viewBox="0 0 12 12" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/button/stop-ignoring/zodiac</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="icon/button/stop-ignoring/zodiac" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linejoin="round">
|
||||
<polygon id="Triangle" stroke="#1B2559" transform="translate(6.000000, 6.000000) rotate(-270.000000) translate(-6.000000, -6.000000) " points="6 2 12 10 0 10"></polygon>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 665 B |
20
new-lamassu-admin/src/styling/icons/button/unpair/white.svg
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="12px" height="12px" viewBox="0 0 12 12" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/button/unpair/white</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="icon/button/unpair/white" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
|
||||
<g id="Group-12" stroke="#FFFFFF">
|
||||
<g id="Group-5">
|
||||
<polyline id="Stroke-1" points="3.75 6 2.25 6 0 3.75 3.75 0 6.75 3"></polyline>
|
||||
<polyline id="Stroke-3" points="8.25 6 9.75 6 12 8.25 8.25 12 5.25 9"></polyline>
|
||||
</g>
|
||||
<line x1="8.25" y1="3" x2="8.25" y2="1.5" id="Stroke-6"></line>
|
||||
<line x1="9.75" y1="3" x2="10.5" y2="2.25" id="Stroke-7"></line>
|
||||
<line x1="9.75" y1="4.5" x2="11.25" y2="4.5" id="Stroke-8"></line>
|
||||
<line x1="2.25" y1="7.5" x2="0.75" y2="7.5" id="Stroke-9"></line>
|
||||
<line x1="2.25" y1="9" x2="1.5" y2="9.75" id="Stroke-10"></line>
|
||||
<line x1="3.75" y1="9" x2="3.75" y2="10.5" id="Stroke-11"></line>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.2 KiB |
20
new-lamassu-admin/src/styling/icons/button/unpair/zodiac.svg
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="12px" height="12px" viewBox="0 0 12 12" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/button/unpair/zodiac</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="icon/button/unpair/zodiac" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
|
||||
<g id="Group-12" stroke="#1B2559">
|
||||
<g id="Group-5">
|
||||
<polyline id="Stroke-1" points="3.75 6 2.25 6 0 3.75 3.75 0 6.75 3"></polyline>
|
||||
<polyline id="Stroke-3" points="8.25 6 9.75 6 12 8.25 8.25 12 5.25 9"></polyline>
|
||||
</g>
|
||||
<line x1="8.25" y1="3" x2="8.25" y2="1.5" id="Stroke-6"></line>
|
||||
<line x1="9.75" y1="3" x2="10.5" y2="2.25" id="Stroke-7"></line>
|
||||
<line x1="9.75" y1="4.5" x2="11.25" y2="4.5" id="Stroke-8"></line>
|
||||
<line x1="2.25" y1="7.5" x2="0.75" y2="7.5" id="Stroke-9"></line>
|
||||
<line x1="2.25" y1="9" x2="1.5" y2="9.75" id="Stroke-10"></line>
|
||||
<line x1="3.75" y1="9" x2="3.75" y2="10.5" id="Stroke-11"></line>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.2 KiB |
15
new-lamassu-admin/src/styling/icons/button/upload/white.svg
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="12px" height="12px" viewBox="0 0 12 12" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/button/upload/white</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="icon/button/upload/white" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
|
||||
<g id="icon/sf-small/wizzard" transform="translate(0.000000, 1.000000)" stroke="#FFFFFF">
|
||||
<g id="Group" transform="translate(6.100000, 4.000000) scale(1, -1) translate(-6.100000, -4.000000) translate(3.600000, 0.000000)">
|
||||
<polyline id="Path-3" points="-3.64153152e-13 5.4 2.4 7.8 4.8 5.4"></polyline>
|
||||
<line x1="2.4" y1="0.5" x2="2.4" y2="7.4" id="Path-4"></line>
|
||||
</g>
|
||||
<path d="M0,9 L0,9 C0,9.9942 0.8058,10.8 1.8,10.8 L10.2,10.8 C11.1942,10.8 12,9.9942 12,9" id="Stroke-1"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1 KiB |
15
new-lamassu-admin/src/styling/icons/button/upload/zodiac.svg
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="12px" height="12px" viewBox="0 0 12 12" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/button/upload/zodiac</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="icon/button/upload/zodiac" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
|
||||
<g id="icon/sf-small/wizzard" transform="translate(0.000000, 1.000000)" stroke="#1B2559">
|
||||
<g id="Group" transform="translate(6.100000, 4.000000) scale(1, -1) translate(-6.100000, -4.000000) translate(3.600000, 0.000000)">
|
||||
<polyline id="Path-3" points="-3.64153152e-13 5.4 2.4 7.8 4.8 5.4"></polyline>
|
||||
<line x1="2.4" y1="0.5" x2="2.4" y2="7.4" id="Path-4"></line>
|
||||
</g>
|
||||
<path d="M0,9 L0,9 C0,9.9942 0.8058,10.8 1.8,10.8 L10.2,10.8 C11.1942,10.8 12,9.9942 12,9" id="Stroke-1"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1 KiB |
|
|
@ -0,0 +1,19 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="12px" height="12px" viewBox="0 0 12 12" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/button/whitelist/white</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="icon/button/whitelist/white" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="Group-2" transform="translate(3.000000, 0.000000)" stroke="#FFFFFF" stroke-linecap="round" stroke-linejoin="round">
|
||||
<polygon id="Stroke-1" fill="#1B2559" points="0.45 11.5384615 8.55 11.5384615 8.55 0.461538462 0.45 0.461538462"></polygon>
|
||||
<line x1="1.97637558" y1="2.53846154" x2="7.2" y2="2.53846154" id="Stroke-4"></line>
|
||||
<line x1="2.475" y1="4.61538462" x2="7.2" y2="4.61538462" id="Stroke-6"></line>
|
||||
<line x1="2.475" y1="6.69230769" x2="7.2" y2="6.69230769" id="Stroke-8"></line>
|
||||
<line x1="2.475" y1="8.76923077" x2="7.2" y2="8.76923077" id="Stroke-10"></line>
|
||||
</g>
|
||||
<g id="Group-9" transform="translate(0.000000, 4.000000)" fill="#5F668A" stroke="#FFFFFF">
|
||||
<circle id="Oval" cx="4" cy="4" r="4"></circle>
|
||||
</g>
|
||||
<polyline id="Stroke-13" stroke="#FFFFFF" stroke-linecap="round" stroke-linejoin="round" points="3 8.33333333 3.5 9 5 7"></polyline>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.4 KiB |
|
|
@ -0,0 +1,19 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="12px" height="12px" viewBox="0 0 12 12" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/button/whitelist/zodiac</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="icon/button/whitelist/zodiac" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="Group-2" transform="translate(3.000000, 0.000000)" stroke="#1B2559" stroke-linecap="round" stroke-linejoin="round">
|
||||
<polygon id="Stroke-1" fill="#FFFFFF" points="0.45 11.5384615 8.55 11.5384615 8.55 0.461538462 0.45 0.461538462"></polygon>
|
||||
<line x1="1.97637558" y1="2.53846154" x2="7.2" y2="2.53846154" id="Stroke-4"></line>
|
||||
<line x1="2.475" y1="4.61538462" x2="7.2" y2="4.61538462" id="Stroke-6"></line>
|
||||
<line x1="2.475" y1="6.69230769" x2="7.2" y2="6.69230769" id="Stroke-8"></line>
|
||||
<line x1="2.475" y1="8.76923077" x2="7.2" y2="8.76923077" id="Stroke-10"></line>
|
||||
</g>
|
||||
<g id="Group-9" transform="translate(0.000000, 4.000000)" fill="#EBEFFF" stroke="#1B2559">
|
||||
<circle id="Oval" cx="4" cy="4" r="4"></circle>
|
||||
</g>
|
||||
<polyline id="Stroke-13" stroke="#1B2559" stroke-linecap="round" stroke-linejoin="round" points="3 8.33333333 3.5 9 5 7"></polyline>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.4 KiB |
|
|
@ -0,0 +1,11 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/sf-small/exception/white</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="icon/sf-small/exception/white" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
|
||||
<line x1="0" y1="3" x2="12" y2="3" id="Path-4" stroke="#FFFFFF" stroke-width="2"></line>
|
||||
<line x1="0" y1="13" x2="20" y2="13" id="Path-4-Copy-3" stroke="#FFFFFF" stroke-width="2"></line>
|
||||
<line x1="0" y1="19" x2="20" y2="19" id="Path-4-Copy-4" stroke="#FFFFFF" stroke-width="2"></line>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 813 B |
|
|
@ -0,0 +1,11 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/sf-small/exception/zodiac</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="icon/sf-small/exception/zodiac" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
|
||||
<line x1="0" y1="3" x2="12" y2="3" id="Path-4" stroke="#1B2559" stroke-width="2"></line>
|
||||
<line x1="0" y1="13" x2="20" y2="13" id="Path-4-Copy-3" stroke="#1B2559" stroke-width="2"></line>
|
||||
<line x1="0" y1="19" x2="20" y2="19" id="Path-4-Copy-4" stroke="#1B2559" stroke-width="2"></line>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 815 B |
|
|
@ -0,0 +1,14 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/sf-small/filter/white</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="icon/sf-small/filter/white" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<path d="M19,2.5 C19,1.11909091 17.8809091,0 16.5,0 C15.1190909,0 14,1.11909091 14,2.5 C14,3.88090909 15.1190909,5 16.5,5 C17.8809091,5 19,3.88090909 19,2.5 Z" id="Stroke-1" stroke="#FFFFFF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
|
||||
<path d="M5,9.5 C5,8.11909091 3.88090909,7 2.5,7 C1.11909091,7 0,8.11909091 0,9.5 C0,10.8818182 1.11909091,12 2.5,12 C3.88090909,12 5,10.8818182 5,9.5 Z" id="Stroke-7" stroke="#FFFFFF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
|
||||
<path d="M19,17.5 C19,16.1190909 17.8809091,15 16.5,15 C15.1190909,15 14,16.1190909 14,17.5 C14,18.8809091 15.1190909,20 16.5,20 C17.8809091,20 19,18.8809091 19,17.5 Z" id="Stroke-9" stroke="#FFFFFF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
|
||||
<line x1="14" y1="2.5" x2="0.498999482" y2="2.5" id="Line-3" stroke="#FFFFFF" stroke-width="2" stroke-linecap="square"></line>
|
||||
<line x1="20" y1="9.5" x2="6.49899948" y2="9.5" id="Line-3-Copy" stroke="#FFFFFF" stroke-width="2" stroke-linecap="square"></line>
|
||||
<line x1="14" y1="17.5" x2="0.498999482" y2="17.5" id="Line-3-Copy-2" stroke="#FFFFFF" stroke-width="2" stroke-linecap="square"></line>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.6 KiB |
|
|
@ -0,0 +1,14 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/sf-small/filter/zodiac</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="icon/sf-small/filter/zodiac" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<path d="M19,2.5 C19,1.11909091 17.8809091,0 16.5,0 C15.1190909,0 14,1.11909091 14,2.5 C14,3.88090909 15.1190909,5 16.5,5 C17.8809091,5 19,3.88090909 19,2.5 Z" id="Stroke-1" stroke="#1B2559" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
|
||||
<path d="M5,9.5 C5,8.11909091 3.88090909,7 2.5,7 C1.11909091,7 0,8.11909091 0,9.5 C0,10.8818182 1.11909091,12 2.5,12 C3.88090909,12 5,10.8818182 5,9.5 Z" id="Stroke-7" stroke="#1B2559" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
|
||||
<path d="M19,17.5 C19,16.1190909 17.8809091,15 16.5,15 C15.1190909,15 14,16.1190909 14,17.5 C14,18.8809091 15.1190909,20 16.5,20 C17.8809091,20 19,18.8809091 19,17.5 Z" id="Stroke-9" stroke="#1B2559" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
|
||||
<line x1="14" y1="2.5" x2="0.498999482" y2="2.5" id="Line-3" stroke="#1B2559" stroke-width="2" stroke-linecap="square"></line>
|
||||
<line x1="20" y1="9.5" x2="6.49899948" y2="9.5" id="Line-3-Copy" stroke="#1B2559" stroke-width="2" stroke-linecap="square"></line>
|
||||
<line x1="14" y1="17.5" x2="0.498999482" y2="17.5" id="Line-3-Copy-2" stroke="#1B2559" stroke-width="2" stroke-linecap="square"></line>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.6 KiB |
|
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/sf-small/clock/white</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="icon/sf-small/clock/white" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
|
||||
<g id="Group-7" stroke="#FFFFFF" stroke-width="2">
|
||||
<path d="M0,10 C0,15.522 4.478,20 10,20 C15.522,20 20,15.522 20,10 C20,4.478 15.522,0 10,0 C7.749,0 5.671,0.744 4,1.999" id="Stroke-1"></path>
|
||||
<polyline id="Stroke-3" points="13 11 10 11.063 10 7"></polyline>
|
||||
<polyline id="Stroke-5" points="3 0 3 3 5 4"></polyline>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 870 B |
|
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/sf-small/clock/zodiac</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="icon/sf-small/clock/zodiac" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
|
||||
<g id="Group-7" stroke="#1B2559" stroke-width="2">
|
||||
<path d="M0,10 C0,15.522 4.478,20 10,20 C15.522,20 20,15.522 20,10 C20,4.478 15.522,0 10,0 C7.749,0 5.671,0.744 4,1.999" id="Stroke-1"></path>
|
||||
<polyline id="Stroke-3" points="13 11 10 11.063 10 7"></polyline>
|
||||
<polyline id="Stroke-5" points="3 0 3 3 5 4"></polyline>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 872 B |
|
|
@ -0,0 +1,12 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/sf-small/listing/white</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="icon/sf-small/listing/white" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
|
||||
<line x1="0" y1="1" x2="20" y2="1" id="Path-4" stroke="#FFFFFF" stroke-width="2"></line>
|
||||
<line x1="0" y1="7" x2="9" y2="7" id="Path-4-Copy" stroke="#FFFFFF" stroke-width="2"></line>
|
||||
<line x1="0" y1="13" x2="20" y2="13" id="Path-4-Copy-2" stroke="#FFFFFF" stroke-width="2"></line>
|
||||
<line x1="0" y1="19" x2="12" y2="19" id="Path-4-Copy-3" stroke="#FFFFFF" stroke-width="2"></line>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 910 B |
|
|
@ -0,0 +1,12 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/sf-small/listing/zodiac</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="icon/sf-small/listing/zodiac" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
|
||||
<line x1="0" y1="1" x2="20" y2="1" id="Path-4" stroke="#1B2559" stroke-width="2"></line>
|
||||
<line x1="0" y1="7" x2="9" y2="7" id="Path-4-Copy" stroke="#1B2559" stroke-width="2"></line>
|
||||
<line x1="0" y1="13" x2="20" y2="13" id="Path-4-Copy-2" stroke="#1B2559" stroke-width="2"></line>
|
||||
<line x1="0" y1="19" x2="12" y2="19" id="Path-4-Copy-3" stroke="#1B2559" stroke-width="2"></line>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 912 B |
|
|
@ -0,0 +1,20 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/sf-small/save/white</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<polygon id="path-1" points="0 21 21 21 21 0 0 0"></polygon>
|
||||
</defs>
|
||||
<g id="icon/sf-small/save/white" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="Group">
|
||||
<polygon id="Stroke-1" stroke="#FFFFFF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" points="20.5 20.5 0.5 20.5 0.5 0.5 16.75 0.5 20.5 4.25"></polygon>
|
||||
<mask id="mask-2" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="Clip-4"></g>
|
||||
<polygon id="Stroke-5" stroke="#FFFFFF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" mask="url(#mask-2)" points="4.25 7.5 16.75 7.5 16.75 0.5 4.25 0.5"></polygon>
|
||||
<circle id="Oval" stroke="#FFFFFF" stroke-width="2" mask="url(#mask-2)" cx="11" cy="14" r="3"></circle>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.2 KiB |
|
|
@ -0,0 +1,24 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/sf-small/save/zodiac</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<polygon id="path-1" points="0 21 21 21 21 0 0 0"></polygon>
|
||||
</defs>
|
||||
<g id="icon/sf-small/save/zodiac" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="Group">
|
||||
<g id="Group-10">
|
||||
<g id="Group-6">
|
||||
<polygon id="Stroke-1" stroke="#1B2559" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" points="20.5 20.5 0.5 20.5 0.5 0.5 16.75 0.5 20.5 4.25"></polygon>
|
||||
<mask id="mask-2" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="Clip-4"></g>
|
||||
<polygon id="Stroke-5" stroke="#1B2559" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" mask="url(#mask-2)" points="4.25 7.5 16.75 7.5 16.75 0.5 4.25 0.5"></polygon>
|
||||
</g>
|
||||
</g>
|
||||
<circle id="Oval" stroke="#1B2559" stroke-width="2" cx="11" cy="14" r="3"></circle>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.3 KiB |
|
|
@ -0,0 +1,10 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/sf-small/search/white</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="icon/sf-small/search/white" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<path d="M15.8635238,8.17028571 C15.8635238,12.4198095 12.4187619,15.8645714 8.1692381,15.8645714 C3.92066667,15.8645714 0.475904762,12.4198095 0.475904762,8.17028571 C0.475904762,3.9207619 3.92066667,0.476 8.1692381,0.476 C12.4187619,0.476 15.8635238,3.9207619 15.8635238,8.17028571 Z" id="Stroke-1" stroke="#FFFFFF" stroke-width="2"></path>
|
||||
<line x1="13.7035238" y1="13.7046667" x2="19.4844762" y2="19.485619" id="Stroke-3" stroke="#FFFFFF" stroke-width="2" stroke-linecap="round"></line>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 958 B |
|
|
@ -0,0 +1,10 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/sf-small/search/zodiac</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="icon/sf-small/search/zodiac" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<path d="M15.8635238,8.17028571 C15.8635238,12.4198095 12.4187619,15.8645714 8.1692381,15.8645714 C3.92066667,15.8645714 0.475904762,12.4198095 0.475904762,8.17028571 C0.475904762,3.9207619 3.92066667,0.476 8.1692381,0.476 C12.4187619,0.476 15.8635238,3.9207619 15.8635238,8.17028571 Z" id="Stroke-1" stroke="#1B2559" stroke-width="2"></path>
|
||||
<line x1="13.7035238" y1="13.7046667" x2="19.4844762" y2="19.485619" id="Stroke-3" stroke="#1B2559" stroke-width="2" stroke-linecap="round"></line>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 960 B |
|
|
@ -0,0 +1,9 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/sf-small/settings/white</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="icon/sf-small/settings/white" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linejoin="round">
|
||||
<path d="M10,13 C8.34325,13 7,11.65675 7,10 C7,8.34325 8.34325,7 10,7 C11.65675,7 13,8.34325 13,10 C13,11.65675 11.65675,13 10,13 Z M19.843,11.816 C19.945,11.391 20,10.45 20,10 C20,9.55 19.945,8.609 19.843,8.184 L17.649,7.656 C17.499,7.166 17.302,6.695 17.065,6.25 L18.244,4.324 C18.016,3.951 17.39,3.247 17.071,2.929 C16.753,2.61 16.049,1.984 15.676,1.756 L13.75,2.935 C13.305,2.698 12.834,2.501 12.344,2.351 L11.816,0.157 C11.391,0.055 10.45,0 10,0 C9.55,0 8.609,0.055 8.184,0.157 L7.656,2.351 C7.166,2.501 6.695,2.698 6.25,2.935 L4.324,1.756 C3.951,1.984 3.247,2.61 2.929,2.929 C2.61,3.247 1.984,3.951 1.756,4.324 L2.935,6.25 C2.698,6.695 2.501,7.166 2.351,7.656 L0.157,8.184 C0.055,8.609 0,9.55 0,10 C0,10.45 0.055,11.391 0.157,11.816 L2.351,12.344 C2.501,12.834 2.698,13.304 2.935,13.75 L1.756,15.676 C1.984,16.049 2.61,16.753 2.929,17.071 C3.247,17.39 3.951,18.016 4.324,18.244 L6.25,17.065 C6.696,17.302 7.166,17.499 7.656,17.649 L8.184,19.843 C8.609,19.945 9.55,20 10,20 C10.45,20 11.391,19.945 11.816,19.843 L12.344,17.649 C12.834,17.499 13.304,17.302 13.75,17.065 L15.676,18.244 C16.049,18.016 16.753,17.39 17.071,17.071 C17.39,16.753 18.016,16.049 18.244,15.676 L17.065,13.75 C17.302,13.304 17.499,12.834 17.649,12.344 L19.843,11.816 Z" id="Stroke-1" stroke="#FFFFFF" stroke-width="2"></path>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.7 KiB |
|
|
@ -0,0 +1,9 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/sf-small/settings/zodiac</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="icon/sf-small/settings/zodiac" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linejoin="round">
|
||||
<path d="M10,13 C8.34325,13 7,11.65675 7,10 C7,8.34325 8.34325,7 10,7 C11.65675,7 13,8.34325 13,10 C13,11.65675 11.65675,13 10,13 Z M19.843,11.816 C19.945,11.391 20,10.45 20,10 C20,9.55 19.945,8.609 19.843,8.184 L17.649,7.656 C17.499,7.166 17.302,6.695 17.065,6.25 L18.244,4.324 C18.016,3.951 17.39,3.247 17.071,2.929 C16.753,2.61 16.049,1.984 15.676,1.756 L13.75,2.935 C13.305,2.698 12.834,2.501 12.344,2.351 L11.816,0.157 C11.391,0.055 10.45,0 10,0 C9.55,0 8.609,0.055 8.184,0.157 L7.656,2.351 C7.166,2.501 6.695,2.698 6.25,2.935 L4.324,1.756 C3.951,1.984 3.247,2.61 2.929,2.929 C2.61,3.247 1.984,3.951 1.756,4.324 L2.935,6.25 C2.698,6.695 2.501,7.166 2.351,7.656 L0.157,8.184 C0.055,8.609 0,9.55 0,10 C0,10.45 0.055,11.391 0.157,11.816 L2.351,12.344 C2.501,12.834 2.698,13.304 2.935,13.75 L1.756,15.676 C1.984,16.049 2.61,16.753 2.929,17.071 C3.247,17.39 3.951,18.016 4.324,18.244 L6.25,17.065 C6.696,17.302 7.166,17.499 7.656,17.649 L8.184,19.843 C8.609,19.945 9.55,20 10,20 C10.45,20 11.391,19.945 11.816,19.843 L12.344,17.649 C12.834,17.499 13.304,17.302 13.75,17.065 L15.676,18.244 C16.049,18.016 16.753,17.39 17.071,17.071 C17.39,16.753 18.016,16.049 18.244,15.676 L17.065,13.75 C17.302,13.304 17.499,12.834 17.649,12.344 L19.843,11.816 Z" id="Stroke-1" stroke="#1B2559" stroke-width="2"></path>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.8 KiB |
|
|
@ -0,0 +1,12 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/sf-small/share/zodiac</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="icon/sf-small/share/zodiac" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
|
||||
<g id="share" transform="translate(4.000000, 4.000000)" stroke="#1B2559">
|
||||
<polygon id="Combined-Shape" points="7.57894737 12 12 0 0 3.52941176 5.05263158 6.35294118"></polygon>
|
||||
<path d="M5.05263158,6.35294118 L12,-1.60760294e-13 L5.05263158,6.35294118 Z" id="Stroke-3"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 820 B |
|
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/sf-small/upload/white</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="icon/sf-small/upload/white" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
|
||||
<g id="Group" transform="translate(10.000000, 7.500000) scale(1, -1) translate(-10.000000, -7.500000) translate(6.000000, 2.000000)" stroke="#FFFFFF" stroke-width="2">
|
||||
<polyline id="Path-3" points="0 7 4 11 8 7"></polyline>
|
||||
<line x1="4" y1="0" x2="4" y2="9" id="Path-4"></line>
|
||||
</g>
|
||||
<path d="M0,15 L0,15 C0,16.657 1.343,18 3,18 L17,18 C18.657,18 20,16.657 20,15" id="Stroke-1" stroke="#FFFFFF" stroke-width="2"></path>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 965 B |
|
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/sf-small/upload/zodiac</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="icon/sf-small/upload/zodiac" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
|
||||
<g id="Group" transform="translate(10.000000, 7.500000) scale(1, -1) translate(-10.000000, -7.500000) translate(6.000000, 2.000000)" stroke="#1B2559" stroke-width="2">
|
||||
<polyline id="Path-3" points="0 7 4 11 8 7"></polyline>
|
||||
<line x1="4" y1="0" x2="4" y2="9" id="Path-4"></line>
|
||||
</g>
|
||||
<path d="M0,15 L0,15 C0,16.657 1.343,18 3,18 L17,18 C18.657,18 20,16.657 20,15" id="Stroke-1" stroke="#1B2559" stroke-width="2"></path>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 967 B |
|
|
@ -0,0 +1,10 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/sf-small/wizard/white</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="icon/sf-small/wizard/white" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<path d="M14.4970664,1.62572901 L17.400851,0.330743919 C17.8221202,0.142258155 18.2874637,0.493837818 18.1900901,0.924522905 L17.5084746,3.89537106 C17.4695251,4.06627784 17.5217994,4.2449975 17.6478726,4.37293343 L19.847492,6.58788531 C20.1652376,6.90919006 19.9571655,7.43655955 19.493872,7.48148362 L16.3000163,7.7871626 C16.1165439,7.80376498 15.9535712,7.90630905 15.8643974,8.05963684 L14.3187189,10.7238294 C14.094247,11.110567 13.4997553,11.0861518 13.3132079,10.6818352 L12.0196758,7.90044938 C11.9448519,7.74028532 11.792129,7.62504531 11.6107065,7.59184057 L8.45682536,7.02345345 C7.99968171,6.94044158 7.84080892,6.39842294 8.18827909,6.10446327 L10.5826458,4.07995038 C10.7199939,3.96373377 10.7886679,3.78989716 10.7650933,3.61606055 L10.3622739,0.599311717 C10.3028247,0.162766969 10.7999428,-0.147795067 11.2017372,0.0729188329 L13.9743237,1.6052202 C14.1342215,1.6921385 14.3299937,1.70092799 14.4970664,1.62572901 Z" id="Stroke-1" stroke="#FFFFFF" stroke-width="2"></path>
|
||||
<line x1="0" y1="20" x2="12" y2="8" id="Stroke-3" stroke="#FFFFFF" stroke-width="2" stroke-linecap="round"></line>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.5 KiB |
|
|
@ -0,0 +1,10 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
|
||||
<title>icon/sf-small/wizard/zodiac</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="icon/sf-small/wizard/zodiac" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<path d="M14.4970664,1.62572901 L17.400851,0.330743919 C17.8221202,0.142258155 18.2874637,0.493837818 18.1900901,0.924522905 L17.5084746,3.89537106 C17.4695251,4.06627784 17.5217994,4.2449975 17.6478726,4.37293343 L19.847492,6.58788531 C20.1652376,6.90919006 19.9571655,7.43655955 19.493872,7.48148362 L16.3000163,7.7871626 C16.1165439,7.80376498 15.9535712,7.90630905 15.8643974,8.05963684 L14.3187189,10.7238294 C14.094247,11.110567 13.4997553,11.0861518 13.3132079,10.6818352 L12.0196758,7.90044938 C11.9448519,7.74028532 11.792129,7.62504531 11.6107065,7.59184057 L8.45682536,7.02345345 C7.99968171,6.94044158 7.84080892,6.39842294 8.18827909,6.10446327 L10.5826458,4.07995038 C10.7199939,3.96373377 10.7886679,3.78989716 10.7650933,3.61606055 L10.3622739,0.599311717 C10.3028247,0.162766969 10.7999428,-0.147795067 11.2017372,0.0729188329 L13.9743237,1.6052202 C14.1342215,1.6921385 14.3299937,1.70092799 14.4970664,1.62572901 Z" id="Stroke-1" stroke="#1B2559" stroke-width="2"></path>
|
||||
<line x1="0" y1="20" x2="12" y2="8" id="Stroke-3" stroke="#1B2559" stroke-width="2" stroke-linecap="round"></line>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.5 KiB |
BIN
new-lamassu-admin/src/styling/icons/direction/cash-in.png
Normal file
|
After Width: | Height: | Size: 599 B |