// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 import React from 'react'; import { GridProps, SpaceProps } from 'styled-system'; import { StyledCell } from './Styled'; export interface CellProps extends SpaceProps, GridProps { tag?: string; css?: string; className?: string; } export const Cell: React.FC> = ({ className, children, ...rest }) => ( {children} ); export default Cell;