
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
@8base/boost
Advanced tools
[](https://travis-ci.org/8base/boost)
Storybook - https://8base.github.io/boost/
yarn storybook
docker pull vorobeez/puppeteer-e2e-chrome:74.0.3729.169-1
docker run --privileged --name e2e-chrome -p 9222:9222 -d vorobeez/puppeteer-e2e-chrome:74.0.3729.169-1
yarn e2e:update
import { BoostProvider, Button } from '@8base/boost';
const App = () => {
return (
<BoostProvider>
...
<Button>Some Text</Button>
</BoostProvider>
)
}
import { BoostProvider, createTheme } from '@8base/boost';
const customTheme = createTheme({
/** Change the pallete of the color. */
COLORS: {
PRIMARY: '#3EB7F9',
PRIMARY_TEXT_COLOR: 'darkorange',
SECONDARY_TEXT_COLOR: 'orange',
},
/** Change the custom components styles if it needed. */
components: {
input: {
root: {
borderColor: 'gray',
},
modifiers: {
hasError: {
borderColor: 'red',
}
}
},
button: ({ COLORS, SIZES }) => ({
root: {
fontSize: SIZES.OVERLINE_1,
},
modifiers: {
disabled: {
backgroundColor: COLORS.RED,
},
},
}),
},
});
const App = () => {
return (
<BoostProvider theme={ customTheme }>
...
</BoostProvider>
)
}
To expand icons pack you should add babel-plugin-inline-react-svg or describe svg components manual.
import { BoostProvider, createTheme } from '@8base/boost';
import SomeSvgIcon from './some-svg-icon.svg';
import AnotherSvgIcon from './another-svg-icon.svg';
const icons = {
SomeSvgIcon,
AnotherSvgIcon,
}
const App = () => {
return (
<BoostProvider icons={ icons }>
...
<Icon name="AnotherSvgIcon" size="lg" color="RED" />
</BoostProvider>
)
}
At the first you need to add install awesome font to the index.html as described in the fontawesome docs.
import { BoostProvider, createTheme } from '@8base/boost';
const App = () => {
return (
<BoostProvider>
...
<Icon className="fas fa-igloo" color="RED" size="lg" />
</BoostProvider>
)
}
FAQs
[](https://travis-ci.org/8base/boost)
We found that @8base/boost demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 6 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.