@nycplanning/streetscape 0.16.0 → 0.17.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,16 @@
1
+ import { TagProps as ChakraTagProps, TagLabelProps as ChakraTagLabelProps, TagCloseButtonProps as ChakraTagCloseButtonProps, IconProps } from '@chakra-ui/react';
2
+ export declare const Tag: import('@chakra-ui/react').ComponentWithAs<"span", ChakraTagProps>;
3
+ export interface TagProps extends ChakraTagProps {
4
+ }
5
+ export declare const TagLabel: import('@chakra-ui/react').ComponentWithAs<"span", ChakraTagLabelProps>;
6
+ export interface TagLabelProps extends ChakraTagLabelProps {
7
+ }
8
+ export declare const TagLeftIcon: import('@chakra-ui/react').ComponentWithAs<"svg", IconProps>;
9
+ export interface TagLeftIconProps extends IconProps {
10
+ }
11
+ export declare const TagRightIcon: import('@chakra-ui/react').ComponentWithAs<"svg", IconProps>;
12
+ export interface TagRightIconProps extends IconProps {
13
+ }
14
+ export declare const TagCloseButton: import('@chakra-ui/react').ComponentWithAs<"button", ChakraTagCloseButtonProps>;
15
+ export interface TagCloseButtonProps extends ChakraTagCloseButtonProps {
16
+ }
@@ -0,0 +1,2 @@
1
+ export { Tag, TagLabel, TagLeftIcon, TagRightIcon, TagCloseButton, } from './Tag';
2
+ export type { TagProps, TagLabelProps, TagLeftIconProps, TagRightIconProps, TagCloseButtonProps, } from './Tag';
@@ -14,3 +14,4 @@ export * from './Transitions';
14
14
  export * from './Modal';
15
15
  export * from './Skeleton';
16
16
  export * from './Tooltip';
17
+ export * from './Tag';