
Security News
ECMAScript 2025 Finalized with Iterator Helpers, Set Methods, RegExp.escape, and More
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
@dev_imlab/msk-ui
Advanced tools
A Library of UI Components and Custom Hooks used in MSK projects.
A Library of UI Components and Custom Hooks used in MSK projects.
This Library is implemented with the following Technology Stack.
import { Avatar } from '@dev_imlab/msk-ui';
const App = () => {
return (
<Avatar
image={{
src: 'https://images.unsplash.com/photo-1438761681033-6461ffad8d80?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2340&q=80',
}}
/>
);
};
import { Avatar, AvatarGroup } from '@dev_imlab/msk-ui';
const App = () => {
return (
<AvatarGroup>
<Avatar
image={{
src: 'https://images.unsplash.com/photo-1438761681033-6461ffad8d80?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2340&q=80',
}}
/>
<Avatar
image={{
src: 'https://images.unsplash.com/photo-1438761681033-6461ffad8d80?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2340&q=80',
}}
/>
<Avatar
image={{
src: 'https://images.unsplash.com/photo-1438761681033-6461ffad8d80?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2340&q=80',
}}
/>
</AvatarGroup>
);
};
import { Input } from '@dev_imlab/msk-ui';
const App = () => {
return (
<Button size='lg' variant='primary'>
Button
</Button>
);
};
import { Dropdown, useDropdown } from '@dev_imlab/msk-ui';
const App = () => {
const { selectedDropdownItem, handleDropdownSelect } = useDropdown({
initialState: 'Item 1',
});
return (
<Dropdown>
<Dropdown.Trigger variant='filled' icon='>'>
{selectedDropdownItem}
</Dropdown.Trigger>
<Dropdown.Menu>
<Dropdown.Item onDropdownSelect={handleDropdownSelect}>
Item 1
</Dropdown.Item>
<Dropdown.Item onDropdownSelect={handleDropdownSelect}>
Item 2
</Dropdown.Item>
<Dropdown.Item onDropdownSelect={handleDropdownSelect}>
Item 3
</Dropdown.Item>
</Dropdown.Menu>
</Dropdown>
);
};
import { Input } from '@dev_imlab/msk-ui';
const App = () => {
return <Input type='text' variant='box' />;
};
import { Dropdown, useDropdown } from '@dev_imlab/msk-ui';
const App = () => {
const { selectedDropdownItem, handleDropdownSelect } = useDropdown({
initialState: 'Item 1',
});
return (
<Dropdown>
<Dropdown.Trigger variant='filled' icon='>'>
{selectedDropdownItem}
</Dropdown.Trigger>
<Dropdown.Menu>
<Dropdown.Item onDropdownSelect={handleDropdownSelect}>
Item 1
</Dropdown.Item>
<Dropdown.Item onDropdownSelect={handleDropdownSelect}>
Item 2
</Dropdown.Item>
<Dropdown.Item onDropdownSelect={handleDropdownSelect}>
Item 3
</Dropdown.Item>
</Dropdown.Menu>
</Dropdown>
);
};
FAQs
A Library of UI Components and Custom Hooks used in MSK projects.
The npm package @dev_imlab/msk-ui receives a total of 0 weekly downloads. As such, @dev_imlab/msk-ui popularity was classified as not popular.
We found that @dev_imlab/msk-ui demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 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.
Security News
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
Security News
A new Node.js homepage button linking to paid support for EOL versions has sparked a heated discussion among contributors and the wider community.
Research
North Korean threat actors linked to the Contagious Interview campaign return with 35 new malicious npm packages using a stealthy multi-stage malware loader.