
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
react-tech-slider
Advanced tools
A reusable and customizable React slider component to showcase brand logos or tech stacks with smooth infinite animation.
Perfect for portfolios, agency pages, SaaS websites, and more.
npm install react-tech-slider
import { Slider } from 'react-tech-slider';
const brands = [
{
id: 1,
name: 'Nike',
img: 'https://img.icons8.com/ios-filled/500/nike.png'
},
{
id: 2,
name: 'Adidas',
img: 'https://img.icons8.com/ios/500/adidas-trefoil.png'
},
{
id: 3,
name: 'Jordan',
img: 'https://img.icons8.com/ios/500/air-jordan.png'
}
];
<Slider brandsList={brands} />
| Prop | Type | Required | Default | Description |
|---|---|---|---|---|
brandsList | Brand[] | ✅ | — | Array of brands to render |
borderColor | string | ❌ | #7c05d8 | Top/bottom border color (#hex or CSS color) |
backgroundColor | string | ❌ | #00000033 | Background color (#hex, rgba, etc.) |
borderWidth | number | ❌ | 1 | Border thickness in pixels |
iconWidth | number | ❌ | — | Width of icons (in rem) — applied globally if individual width is not defined |
isPlay | boolean | ❌ | true | Whether the animation is running (true) or paused (false) |
pauseOnHoverActive | boolean | ❌ | false | If true, the animation pauses on hover |
durationMs | number | ❌ | 30000 | Time in milliseconds for one full animation loop |
interface Brand {
id: number;
name: string;
img: string;
width?: number; // rem
height?: number; // rem
style?: React.CSSProperties;
className?: string;
}
Smooth infinite animation via pure CSS
Global or per-brand sizing flexibility
Edge fade-out using mask-image for visual polish
Pause-on-hover option for user interaction
Fully responsive layout
<Slider
brandsList={brands}
borderWidth={2}
borderColor="#0cf"
backgroundColor="#eef"
iconWidth={6}
isPlay={true}
pauseOnHoverActive={true}
durationMs={20000}
/>
brandsList={[
{
id: 1,
name: 'Nike',
img: 'https://img.icons8.com/ios-filled/500/nike.png',
width: 10,
height: 10,
style: { 'background-color': 'white' },
className: 'nike-brand'
},
...
]}
/>
npm run build
npm publish
Pull requests and suggestions are welcome at
👉 https://github.com/T0N1-Dev/react-tech-slider
FAQs
Reusable React component slider for showcasing brands
The npm package react-tech-slider receives a total of 24 weekly downloads. As such, react-tech-slider popularity was classified as not popular.
We found that react-tech-slider demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer 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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.