@primer/components
Version:
Primer react components
14 lines (13 loc) • 322 B
JavaScript
import styled from 'styled-components';
import Box from './Box';
/**
* @deprecated Use the Box component instead (i.e. <Grid> → <Box display="grid">)
*/
const Grid = styled(Box).withConfig({
displayName: "Grid",
componentId: "sc-1i6s5ye-0"
})([""]);
Grid.defaultProps = {
display: 'grid'
};
export default Grid;