JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 28
  • Score
    100M100P100Q49665F
  • License MIT

General-purpose reusable UI components for roblox-ts

Package Exports

    This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@rbxts-ui/components) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

    Readme

    @rbxts-ui/components

    General-purpose reusable UI components for roblox-ts.

    Installation

    pnpm add @rbxts-ui/components

    Usage

    import { Divider, Padding, Checkmark } from "@rbxts-ui/components";
    
    function App() {
      return (
        <VStack>
          <Divider orientation="horizontal" />
          <Padding padding={10} />
          <Checkmark checked={true} color={Color3.fromRGB(0, 255, 0)} />
        </VStack>
      );
    }