
Product
Introducing Rust Support in Socket
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.
@wireapp/react-ui-kit
Advanced tools
This repository is part of the source code of Wire. You can find more information at wire.com or by contacting opensource@wire.com.
You can find the published source code at github.com/wireapp.
For licensing information, see the attached LICENSE file and the list of third-party licenses at wire.com/legal/licenses/.
yarn
yarn start
When creating a new component, follow these guidelines:
Choose the Right Category
src/
:
DataDisplay/
: For data visualization components (tables, lists)Identity/
: Design system, theme, colors, etc.Inputs/
: For form controls and input elementsLayout/
: For structural componentsNavigation/
: For navigation-related componentsSurface/
: For containers, cards, modals, and overlaysTypography/
: For text-related componentsutils/
: For utility componentsComponent Structure Create a new folder for your component with the following files:
Category/
└── ComponentName/
├── ComponentName.tsx # Main component file
├── ComponentName.stories.tsx # Storybook stories
└── index.ts # Export file
Component File (ComponentName.tsx)
Stories File (ComponentName.stories.tsx)
Index File (index.ts)
Example:
// Button.tsx
export interface ButtonProps {
variant: 'primary' | 'secondary';
// ... other props
}
export const Button = ({variant, ...props}: ButtonProps) => {
// Component implementation
};
// Button.stories.tsx
export default {
title: 'Inputs/Button',
component: Button,
// ... story configuration
};
// index.ts
export * from './Button';
Remember to:
FAQs
Unknown package
The npm package @wireapp/react-ui-kit receives a total of 254 weekly downloads. As such, @wireapp/react-ui-kit popularity was classified as not popular.
We found that @wireapp/react-ui-kit demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 8 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.
Product
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.
Product
Socket’s precomputed reachability slashes false positives by flagging up to 80% of vulnerabilities as irrelevant, with no setup and instant results.
Product
Socket is launching experimental protection for Chrome extensions, scanning for malware and risky permissions to prevent silent supply chain attacks.