fix(#2362): fixed lff client
parent
d529844b5d
commit
002e6884c9
@ -0,0 +1,5 @@ |
|||||||
|
import { Icon } from 'features/Icon' |
||||||
|
|
||||||
|
export const PoweredByInstatIcon = () => ( |
||||||
|
<Icon refIcon='PoweredByInstat' /> |
||||||
|
) |
||||||
@ -1,6 +1,7 @@ |
|||||||
export type ArrowLoaderProps = { |
export type ArrowLoaderProps = { |
||||||
backgroundColor?: string, |
backgroundColor?: string, |
||||||
className?: string, |
className?: string, |
||||||
|
color?: string, |
||||||
disabled?: boolean, |
disabled?: boolean, |
||||||
width?:string, |
width?:string, |
||||||
} |
} |
||||||
|
|||||||
@ -0,0 +1,20 @@ |
|||||||
|
import styled from 'styled-components' |
||||||
|
|
||||||
|
import { PoweredByInstatIcon } from 'components/PoweredByInstatIcon' |
||||||
|
import { devices } from '../../../../config' |
||||||
|
|
||||||
|
const Wrapper = styled.div` |
||||||
|
position: fixed; |
||||||
|
bottom: 60px; |
||||||
|
right: 55px; |
||||||
|
|
||||||
|
@media ${devices.tablet} { |
||||||
|
display: none; |
||||||
|
} |
||||||
|
` |
||||||
|
|
||||||
|
export const PoweredByInstat = () => ( |
||||||
|
<Wrapper> |
||||||
|
<PoweredByInstatIcon /> |
||||||
|
</Wrapper> |
||||||
|
) |
||||||
File diff suppressed because one or more lines are too long
Loading…
Reference in new issue