MCPcopy Create free account
hub / github.com/coderoad/coderoad-vscode / Props

Interface Props

web-app/src/components/Icon/index.tsx:4–9  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2import * as React from 'react'
3
4interface Props {
5 type: string
6 role?: string
7 style?: React.CSSProperties
8 size?: 'xxs' | 'xs' | 'small' | 'medium' | 'large' | 'xl' | 'xxl' | 'xxxl' | 'inherit'
9}
10
11const Icon = (props: Props) => {
12 return <AlifdIcon type={props.type} role={props.role} size={props.size} style={props.style} />

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected