Base
Alphaimport { Base } from 'primer-react-prototype'
This is an internal utility and not intended for public usage.
import React from 'react';
import { SystemStyleObject } from 'styled-system';
import { Base, SxProp } from './Base';
import { ForwardRefComponent } from './polymorphic';
import { common, CommonSystemProps, forwardSystemProps } from './system-props';
const defaultElement = 'div';
type Size = 'small' | 'large';
export type ExampleProps = SxProp &
CommonSystemProps & {
size?: Size;
};
type ExampleComponent = ForwardRefComponent<
typeof defaultElement,
ExampleProps
>;
const sizes: Record<Size, SystemStyleObject> = {
small: {
px: 3,
py: 2,
},
large: {
px: 4,
py: 2,
},
};
export const Example = React.forwardRef(
({ as = defaultElement, size = 'small', ...props }, ref) => {
return (
<Base
as={as}
ref={ref}
{...forwardSystemProps(props, common)}
__css={{
bg: 'bg.primary',
...sizes[size],
}}
/>
);
}
) as ExampleComponent;
API Reference
Base
Prop |
---|
sx |
__css |
__systemProps |
as |
Color
color |
backgroundColor |
opacity |
bg |
Space
margin |
marginTop |
marginRight |
marginBottom |
marginLeft |
marginX |
marginY |
m |
mt |
mr |
mb |
ml |
mx |
my |
padding |
paddingTop |
paddingRight |
paddingBottom |
paddingLeft |
paddingX |
paddingY |
p |
pt |
pr |
pb |
pl |
px |
py |
Flexbox
alignItems |
alignContent |
justifyItems |
justifyContent |
flexWrap |
flexDirection |
flex |
flexGrow |
flexShrink |
flexBasis |
justifySelf |
alignSelf |
order |
Grid
gridGap |
gridColumnGap |
gridRowGap |
gridColumn |
gridRow |
gridAutoFlow |
gridAutoColumns |
gridAutoRows |
gridTemplateColumns |
gridTemplateRows |
gridTemplateAreas |
gridArea |
Layout
width |
height |
minWidth |
minHeight |
maxWidth |
maxHeight |
display |
verticalAlign |
Position
position |
zIndex |
top |
right |
bottom |
left |
Border
border |
borderWidth |
borderStyle |
borderColor |
borderRadius |
borderTop |
borderTopLeftRadius |
borderTopRightRadius |
borderRight |
borderBottom |
borderBottomLeftRadius |
borderBottomRightRadius |
borderLeft |
borderX |
borderY |
borderTopWidth |
borderTopColor |
borderTopStyle |
borderBottomWidth |
borderBottomColor |
borderBottomStyle |
borderLeftWidth |
borderLeftColor |
borderLeftStyle |
borderRightWidth |
borderRightColor |
borderRightStyle |