Skip to content

Commit

Permalink
fix: icons
Browse files Browse the repository at this point in the history
  • Loading branch information
ankitskvmdam committed Oct 26, 2021
1 parent 616ed53 commit 534dde2
Show file tree
Hide file tree
Showing 2,276 changed files with 71,303 additions and 31,793 deletions.
43 changes: 30 additions & 13 deletions src/icons/Buildings/ancient-gate-fill.tsx
Original file line number Diff line number Diff line change
@@ -1,14 +1,31 @@
import { forwardRef } from 'react'
import cx from 'clsx'

export default (props: React.SVGProps<SVGSVGElement> & { innerRef?: React.RefObject<any>}): JSX.Element => {
const { innerRef, ...rest } = props
return (
<svg ref={innerRef} {...rest} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<g>
<path fill="none" d="M0 0h24v24H0z"/>
<path d="M18.901 10a2.999 2.999 0 0 0 4.075 1.113 3.5 3.5 0 0 1-1.975 3.55L21 21h-6v-2a3 3 0 0 0-5.995-.176L9 19v2H3v-6.336a3.5 3.5 0 0 1-1.979-3.553A2.999 2.999 0 0 0 5.098 10h13.803zm-1.865-7a3.5 3.5 0 0 0 4.446 2.86 3.5 3.5 0 0 1-3.29 3.135L18 9H6a3.5 3.5 0 0 1-3.482-3.14A3.5 3.5 0 0 0 6.964 3h10.072z"/>
</g>
</svg>

)
}

import { createStyle, getThemeCSSObject } from '../../styles'
import type { ChromatinIcon } from '../types'

const useStyles = createStyle((theme) => ({
root: (props: ChromatinIcon) => ({
...getThemeCSSObject(props?.csx?.root, theme),
}),
}))

export default forwardRef<any, ChromatinIcon>((props, ref): JSX.Element => {
const { className, classes: _classes = {}, csx = {}, ...rest } = props
const classes = useStyles({ className, classes: _classes, csx, ...rest })

return (
<svg
className={cx(classes.root, _classes.root, className)}
ref={ref}
{...rest}
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
>
<g>
<path fill="none" d="M0 0h24v24H0z" />
<path d="M18.901 10a2.999 2.999 0 0 0 4.075 1.113 3.5 3.5 0 0 1-1.975 3.55L21 21h-6v-2a3 3 0 0 0-5.995-.176L9 19v2H3v-6.336a3.5 3.5 0 0 1-1.979-3.553A2.999 2.999 0 0 0 5.098 10h13.803zm-1.865-7a3.5 3.5 0 0 0 4.446 2.86 3.5 3.5 0 0 1-3.29 3.135L18 9H6a3.5 3.5 0 0 1-3.482-3.14A3.5 3.5 0 0 0 6.964 3h10.072z" />
</g>
</svg>
)
})
46 changes: 33 additions & 13 deletions src/icons/Buildings/ancient-gate-line.tsx
Original file line number Diff line number Diff line change
@@ -1,14 +1,34 @@
import { forwardRef } from 'react'
import cx from 'clsx'

export default (props: React.SVGProps<SVGSVGElement> & { innerRef?: React.RefObject<any>}): JSX.Element => {
const { innerRef, ...rest } = props
return (
<svg ref={innerRef} {...rest} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<g>
<path fill="none" d="M0 0h24v24H0z"/>
<path fill-rule="nonzero" d="M18.901 10a2.999 2.999 0 0 0 4.075 1.113 3.5 3.5 0 0 1-1.975 3.55L21 21h-7v-2a2 2 0 0 0-1.85-1.995L12 17a2 2 0 0 0-1.995 1.85L10 19v2H3v-6.336a3.5 3.5 0 0 1-1.979-3.553A2.999 2.999 0 0 0 5.098 10h13.803zm-.971 2H6.069l-.076.079c-.431.42-.935.76-1.486 1.002l-.096.039.589.28-.001 5.6 3.002-.001v-.072l.01-.223c.149-2.016 1.78-3.599 3.854-3.698l.208-.005.223.01a4 4 0 0 1 3.699 3.787l.004.201L19 19l.001-5.6.587-.28-.095-.04a5.002 5.002 0 0 1-1.486-1.001L17.93 12zm-.894-9a3.5 3.5 0 0 0 4.446 2.86 3.5 3.5 0 0 1-3.29 3.135L18 9H6a3.5 3.5 0 0 1-3.482-3.14A3.5 3.5 0 0 0 6.964 3h10.072zM15.6 5H8.399a5.507 5.507 0 0 1-1.49 1.816L6.661 7h10.677l-.012-.008a5.518 5.518 0 0 1-1.579-1.722L15.6 5z"/>
</g>
</svg>

)
}

import { createStyle, getThemeCSSObject } from '../../styles'
import type { ChromatinIcon } from '../types'

const useStyles = createStyle((theme) => ({
root: (props: ChromatinIcon) => ({
...getThemeCSSObject(props?.csx?.root, theme),
}),
}))

export default forwardRef<any, ChromatinIcon>((props, ref): JSX.Element => {
const { className, classes: _classes = {}, csx = {}, ...rest } = props
const classes = useStyles({ className, classes: _classes, csx, ...rest })

return (
<svg
className={cx(classes.root, _classes.root, className)}
ref={ref}
{...rest}
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
>
<g>
<path fill="none" d="M0 0h24v24H0z" />
<path
fill-rule="nonzero"
d="M18.901 10a2.999 2.999 0 0 0 4.075 1.113 3.5 3.5 0 0 1-1.975 3.55L21 21h-7v-2a2 2 0 0 0-1.85-1.995L12 17a2 2 0 0 0-1.995 1.85L10 19v2H3v-6.336a3.5 3.5 0 0 1-1.979-3.553A2.999 2.999 0 0 0 5.098 10h13.803zm-.971 2H6.069l-.076.079c-.431.42-.935.76-1.486 1.002l-.096.039.589.28-.001 5.6 3.002-.001v-.072l.01-.223c.149-2.016 1.78-3.599 3.854-3.698l.208-.005.223.01a4 4 0 0 1 3.699 3.787l.004.201L19 19l.001-5.6.587-.28-.095-.04a5.002 5.002 0 0 1-1.486-1.001L17.93 12zm-.894-9a3.5 3.5 0 0 0 4.446 2.86 3.5 3.5 0 0 1-3.29 3.135L18 9H6a3.5 3.5 0 0 1-3.482-3.14A3.5 3.5 0 0 0 6.964 3h10.072zM15.6 5H8.399a5.507 5.507 0 0 1-1.49 1.816L6.661 7h10.677l-.012-.008a5.518 5.518 0 0 1-1.579-1.722L15.6 5z"
/>
</g>
</svg>
)
})
43 changes: 30 additions & 13 deletions src/icons/Buildings/ancient-pavilion-fill.tsx
Original file line number Diff line number Diff line change
@@ -1,14 +1,31 @@
import { forwardRef } from 'react'
import cx from 'clsx'

export default (props: React.SVGProps<SVGSVGElement> & { innerRef?: React.RefObject<any>}): JSX.Element => {
const { innerRef, ...rest } = props
return (
<svg ref={innerRef} {...rest} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<g>
<path fill="none" d="M0 0h24v24H0z"/>
<path d="M12.513 2.001a9.004 9.004 0 0 0 9.97 5.877A4.501 4.501 0 0 1 19 11.888V19l2 .001v2H3v-2h2v-7.113a4.503 4.503 0 0 1-3.484-4.01 9.004 9.004 0 0 0 9.972-5.876h1.025zM17 12H7V19h10v-7z"/>
</g>
</svg>

)
}

import { createStyle, getThemeCSSObject } from '../../styles'
import type { ChromatinIcon } from '../types'

const useStyles = createStyle((theme) => ({
root: (props: ChromatinIcon) => ({
...getThemeCSSObject(props?.csx?.root, theme),
}),
}))

export default forwardRef<any, ChromatinIcon>((props, ref): JSX.Element => {
const { className, classes: _classes = {}, csx = {}, ...rest } = props
const classes = useStyles({ className, classes: _classes, csx, ...rest })

return (
<svg
className={cx(classes.root, _classes.root, className)}
ref={ref}
{...rest}
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
>
<g>
<path fill="none" d="M0 0h24v24H0z" />
<path d="M12.513 2.001a9.004 9.004 0 0 0 9.97 5.877A4.501 4.501 0 0 1 19 11.888V19l2 .001v2H3v-2h2v-7.113a4.503 4.503 0 0 1-3.484-4.01 9.004 9.004 0 0 0 9.972-5.876h1.025zM17 12H7V19h10v-7z" />
</g>
</svg>
)
})
46 changes: 33 additions & 13 deletions src/icons/Buildings/ancient-pavilion-line.tsx
Original file line number Diff line number Diff line change
@@ -1,14 +1,34 @@
import { forwardRef } from 'react'
import cx from 'clsx'

export default (props: React.SVGProps<SVGSVGElement> & { innerRef?: React.RefObject<any>}): JSX.Element => {
const { innerRef, ...rest } = props
return (
<svg ref={innerRef} {...rest} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<g>
<path fill="none" d="M0 0h24v24H0z"/>
<path fill-rule="nonzero" d="M12.513 2.001a9.004 9.004 0 0 0 9.97 5.877A4.501 4.501 0 0 1 19 11.888V19l2 .001v2H3v-2h2v-7.113a4.503 4.503 0 0 1-3.484-4.01 9.004 9.004 0 0 0 9.972-5.876h1.025zM17 12H7V19h10v-7zm-5-6.673l-.11.155A11.012 11.012 0 0 1 5.4 9.736l-.358.073.673.19h12.573l.668-.19-.011-.002a11.01 11.01 0 0 1-6.836-4.326L12 5.326z"/>
</g>
</svg>

)
}

import { createStyle, getThemeCSSObject } from '../../styles'
import type { ChromatinIcon } from '../types'

const useStyles = createStyle((theme) => ({
root: (props: ChromatinIcon) => ({
...getThemeCSSObject(props?.csx?.root, theme),
}),
}))

export default forwardRef<any, ChromatinIcon>((props, ref): JSX.Element => {
const { className, classes: _classes = {}, csx = {}, ...rest } = props
const classes = useStyles({ className, classes: _classes, csx, ...rest })

return (
<svg
className={cx(classes.root, _classes.root, className)}
ref={ref}
{...rest}
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
>
<g>
<path fill="none" d="M0 0h24v24H0z" />
<path
fill-rule="nonzero"
d="M12.513 2.001a9.004 9.004 0 0 0 9.97 5.877A4.501 4.501 0 0 1 19 11.888V19l2 .001v2H3v-2h2v-7.113a4.503 4.503 0 0 1-3.484-4.01 9.004 9.004 0 0 0 9.972-5.876h1.025zM17 12H7V19h10v-7zm-5-6.673l-.11.155A11.012 11.012 0 0 1 5.4 9.736l-.358.073.673.19h12.573l.668-.19-.011-.002a11.01 11.01 0 0 1-6.836-4.326L12 5.326z"
/>
</g>
</svg>
)
})
43 changes: 30 additions & 13 deletions src/icons/Buildings/bank-fill.tsx
Original file line number Diff line number Diff line change
@@ -1,14 +1,31 @@
import { forwardRef } from 'react'
import cx from 'clsx'

export default (props: React.SVGProps<SVGSVGElement> & { innerRef?: React.RefObject<any>}): JSX.Element => {
const { innerRef, ...rest } = props
return (
<svg ref={innerRef} {...rest} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<g>
<path fill="none" d="M0 0h24v24H0z"/>
<path d="M2 20h20v2H2v-2zm2-8h2v7H4v-7zm5 0h2v7H9v-7zm4 0h2v7h-2v-7zm5 0h2v7h-2v-7zM2 7l10-5 10 5v4H2V7zm10 1a1 1 0 1 0 0-2 1 1 0 0 0 0 2z"/>
</g>
</svg>

)
}

import { createStyle, getThemeCSSObject } from '../../styles'
import type { ChromatinIcon } from '../types'

const useStyles = createStyle((theme) => ({
root: (props: ChromatinIcon) => ({
...getThemeCSSObject(props?.csx?.root, theme),
}),
}))

export default forwardRef<any, ChromatinIcon>((props, ref): JSX.Element => {
const { className, classes: _classes = {}, csx = {}, ...rest } = props
const classes = useStyles({ className, classes: _classes, csx, ...rest })

return (
<svg
className={cx(classes.root, _classes.root, className)}
ref={ref}
{...rest}
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
>
<g>
<path fill="none" d="M0 0h24v24H0z" />
<path d="M2 20h20v2H2v-2zm2-8h2v7H4v-7zm5 0h2v7H9v-7zm4 0h2v7h-2v-7zm5 0h2v7h-2v-7zM2 7l10-5 10 5v4H2V7zm10 1a1 1 0 1 0 0-2 1 1 0 0 0 0 2z" />
</g>
</svg>
)
})
43 changes: 30 additions & 13 deletions src/icons/Buildings/bank-line.tsx
Original file line number Diff line number Diff line change
@@ -1,14 +1,31 @@
import { forwardRef } from 'react'
import cx from 'clsx'

export default (props: React.SVGProps<SVGSVGElement> & { innerRef?: React.RefObject<any>}): JSX.Element => {
const { innerRef, ...rest } = props
return (
<svg ref={innerRef} {...rest} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<g>
<path fill="none" d="M0 0h24v24H0z"/>
<path d="M2 20h20v2H2v-2zm2-8h2v7H4v-7zm5 0h2v7H9v-7zm4 0h2v7h-2v-7zm5 0h2v7h-2v-7zM2 7l10-5 10 5v4H2V7zm2 1.236V9h16v-.764l-8-4-8 4zM12 8a1 1 0 1 1 0-2 1 1 0 0 1 0 2z"/>
</g>
</svg>

)
}

import { createStyle, getThemeCSSObject } from '../../styles'
import type { ChromatinIcon } from '../types'

const useStyles = createStyle((theme) => ({
root: (props: ChromatinIcon) => ({
...getThemeCSSObject(props?.csx?.root, theme),
}),
}))

export default forwardRef<any, ChromatinIcon>((props, ref): JSX.Element => {
const { className, classes: _classes = {}, csx = {}, ...rest } = props
const classes = useStyles({ className, classes: _classes, csx, ...rest })

return (
<svg
className={cx(classes.root, _classes.root, className)}
ref={ref}
{...rest}
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
>
<g>
<path fill="none" d="M0 0h24v24H0z" />
<path d="M2 20h20v2H2v-2zm2-8h2v7H4v-7zm5 0h2v7H9v-7zm4 0h2v7h-2v-7zm5 0h2v7h-2v-7zM2 7l10-5 10 5v4H2V7zm2 1.236V9h16v-.764l-8-4-8 4zM12 8a1 1 0 1 1 0-2 1 1 0 0 1 0 2z" />
</g>
</svg>
)
})
43 changes: 30 additions & 13 deletions src/icons/Buildings/building-2-fill.tsx
Original file line number Diff line number Diff line change
@@ -1,14 +1,31 @@
import { forwardRef } from 'react'
import cx from 'clsx'

export default (props: React.SVGProps<SVGSVGElement> & { innerRef?: React.RefObject<any>}): JSX.Element => {
const { innerRef, ...rest } = props
return (
<svg ref={innerRef} {...rest} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<g>
<path fill="none" d="M0 0h24v24H0z"/>
<path d="M12 19h2V6l6.394 2.74a1 1 0 0 1 .606.92V19h2v2H1v-2h2V5.65a1 1 0 0 1 .594-.914l7.703-3.424A.5.5 0 0 1 12 1.77V19z"/>
</g>
</svg>

)
}

import { createStyle, getThemeCSSObject } from '../../styles'
import type { ChromatinIcon } from '../types'

const useStyles = createStyle((theme) => ({
root: (props: ChromatinIcon) => ({
...getThemeCSSObject(props?.csx?.root, theme),
}),
}))

export default forwardRef<any, ChromatinIcon>((props, ref): JSX.Element => {
const { className, classes: _classes = {}, csx = {}, ...rest } = props
const classes = useStyles({ className, classes: _classes, csx, ...rest })

return (
<svg
className={cx(classes.root, _classes.root, className)}
ref={ref}
{...rest}
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
>
<g>
<path fill="none" d="M0 0h24v24H0z" />
<path d="M12 19h2V6l6.394 2.74a1 1 0 0 1 .606.92V19h2v2H1v-2h2V5.65a1 1 0 0 1 .594-.914l7.703-3.424A.5.5 0 0 1 12 1.77V19z" />
</g>
</svg>
)
})
43 changes: 30 additions & 13 deletions src/icons/Buildings/building-2-line.tsx
Original file line number Diff line number Diff line change
@@ -1,14 +1,31 @@
import { forwardRef } from 'react'
import cx from 'clsx'

export default (props: React.SVGProps<SVGSVGElement> & { innerRef?: React.RefObject<any>}): JSX.Element => {
const { innerRef, ...rest } = props
return (
<svg ref={innerRef} {...rest} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<g>
<path fill="none" d="M0 0h24v24H0z"/>
<path d="M3 19V5.7a1 1 0 0 1 .658-.94l9.671-3.516a.5.5 0 0 1 .671.47v4.953l6.316 2.105a1 1 0 0 1 .684.949V19h2v2H1v-2h2zm2 0h7V3.855L5 6.401V19zm14 0v-8.558l-5-1.667V19h5z"/>
</g>
</svg>

)
}

import { createStyle, getThemeCSSObject } from '../../styles'
import type { ChromatinIcon } from '../types'

const useStyles = createStyle((theme) => ({
root: (props: ChromatinIcon) => ({
...getThemeCSSObject(props?.csx?.root, theme),
}),
}))

export default forwardRef<any, ChromatinIcon>((props, ref): JSX.Element => {
const { className, classes: _classes = {}, csx = {}, ...rest } = props
const classes = useStyles({ className, classes: _classes, csx, ...rest })

return (
<svg
className={cx(classes.root, _classes.root, className)}
ref={ref}
{...rest}
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
>
<g>
<path fill="none" d="M0 0h24v24H0z" />
<path d="M3 19V5.7a1 1 0 0 1 .658-.94l9.671-3.516a.5.5 0 0 1 .671.47v4.953l6.316 2.105a1 1 0 0 1 .684.949V19h2v2H1v-2h2zm2 0h7V3.855L5 6.401V19zm14 0v-8.558l-5-1.667V19h5z" />
</g>
</svg>
)
})
Loading

0 comments on commit 534dde2

Please sign in to comment.